HomeSort by relevance Sort by last modified time
    Searched refs:SessionService (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/browser/sessions/
session_service_factory.cc 12 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) {
14 // For Android we do not store sessions in the SessionService.
17 return static_cast<SessionService*>(
23 SessionService* SessionServiceFactory::GetForProfileIfExisting(
26 // For Android we do not store sessions in the SessionService.
29 return static_cast<SessionService*>(
55 "SessionService",
64 SessionService* service = NULL;
65 service = new SessionService(static_cast<Profile*>(profile));
session_service_factory.h 15 // the associated SessionService.
25 static SessionService* GetForProfile(Profile* profile);
31 static SessionService* GetForProfileIfExisting(Profile* profile);
41 static void SetForTestProfile(Profile* profile, SessionService* service) {
session_service_test_helper.h 17 class SessionService;
25 // A simple class that makes writing SessionService related tests easier.
30 explicit SessionServiceTestHelper(SessionService* service);
73 void SetService(SessionService* service);
74 SessionService* ReleaseService() { return service_.release(); }
75 SessionService* service() { return service_.get(); }
80 scoped_ptr<SessionService> service_;
session_service.cc 180 // SessionService -------------------------------------------------------------
182 SessionService::SessionService(Profile* profile)
193 SessionService::SessionService(const base::FilePath& save_path)
204 SessionService::~SessionService() {
205 // The BrowserList should outlive the SessionService since it's static and
206 // the SessionService is a BrowserContextKeyedService.
211 bool SessionService::RestoreIfNecessary(const std::vector<GURL>& urls_to_open)
    [all...]
session_tab_helper.cc 46 SessionService* session = SessionServiceFactory::GetForProfile(profile);
session_service_test_helper.cc 20 SessionServiceTestHelper::SessionServiceTestHelper(SessionService* service)
108 void SessionServiceTestHelper::SetService(SessionService* service) {
110 // Execute IO tasks posted by the SessionService.
session_service.h 37 // SessionService ------------------------------------------------------------
39 // SessionService is responsible for maintaining the state of open windows
43 // SessionService supports restoring from the last session. The last session
51 // SessionService itself maintains a set of SessionCommands that allow
52 // SessionService to rebuild the open state of the browser (as SessionWindow,
55 // SessionService rebuilds the contents of the file from the open state of the
57 class SessionService : public BaseSessionService,
69 // Creates a SessionService for the specified profile.
70 explicit SessionService(Profile* profile);
72 explicit SessionService(const base::FilePath& save_path)
    [all...]
session_service_unittest.cc 52 SessionService* session_service = new SessionService(path_);
56 window_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL);
92 SessionService* session_service = new SessionService(path_);
150 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL);
158 SessionService* service() { return helper_.service(); }
350 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL);
413 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL);
459 window2_id, Browser::TYPE_POPUP, SessionService::TYPE_NORMAL)
    [all...]
  /external/chromium/chrome/browser/sessions/
session_id.h 12 class SessionService;
30 friend class SessionService;
session_service_test_helper.h 17 class SessionService;
22 // A simple class that makes writing SessionService related tests easier.
27 explicit SessionServiceTestHelper(SessionService* service);
64 void set_service(SessionService* service) { service_ = service; }
65 SessionService* ReleaseService() { return service_.release(); }
66 SessionService* service() { return service_.get(); }
71 scoped_refptr<SessionService> service_;
session_service.cc 68 // The callback from GetLastSession is internally routed to SessionService
77 SessionService::SessionCallback* real_callback)
83 scoped_ptr<SessionService::SessionCallback> real_callback;
130 // SessionService -------------------------------------------------------------
132 SessionService::SessionService(Profile* profile)
142 SessionService::SessionService(const FilePath& save_path)
152 SessionService::~SessionService() {
    [all...]
session_service.h 30 // SessionService ------------------------------------------------------------
32 // SessionService is responsible for maintaining the state of open windows
36 // SessionService supports restoring from the last session. The last session
44 // SessionService itself maintains a set of SessionCommands that allow
45 // SessionService to rebuild the open state of the browser (as
48 // SessionService rebuilds the contents of the file from the open state
50 class SessionService : public BaseSessionService,
54 // Creates a SessionService for the specified profile.
55 explicit SessionService(Profile* profile);
57 explicit SessionService(const FilePath& save_path)
    [all...]
session_service_test_helper.cc 18 SessionServiceTestHelper::SessionServiceTestHelper(SessionService* service)
session_restore.cc 405 // from SessionService. SessionRestoreImpl deletes itself when done.
425 SessionService* session_service = profile_->GetSessionService();
427 SessionService::SessionCallback* callback =
553 void OnGotSession(SessionService::Handle handle,
727 // Invokes TabRestored on the SessionService for all tabs in browser after
730 SessionService* session_service = profile_->GetSessionService();
session_service_unittest.cc 46 SessionService* session_service = new SessionService(path_);
88 SessionService* session_service = new SessionService(path_);
126 SessionService* service() { return helper_.service(); }
tab_restore_service_browsertest.cc 85 SessionService* session_service = profile()->GetSessionService();
99 // Creates a SessionService and assigns it to the Profile. The SessionService
105 SessionService* session_service = new SessionService(profile());
  /external/chromium_org/chrome/browser/ui/startup/
session_crashed_infobar_delegate_unittest.cc 44 static_cast<SessionService*>(
  /external/chromium_org/chrome/browser/ui/
browser_window_state.cc 74 SessionService* session_service =
browser_tabrestore.cc 126 SessionService* session_service =
browser.cc 464 SessionService* session_service =
634 SessionService* session_service =
    [all...]
  /external/chromium/android/autofill/
profile_android.h 101 class SessionService;
193 virtual SessionService* GetSessionService() { NOTREACHED(); return NULL; }
  /external/chromium/chrome/browser/profiles/
profile.h 102 class SessionService;
429 virtual SessionService* GetSessionService() = 0;
profile_impl.h 102 virtual SessionService* GetSessionService();
250 scoped_refptr<SessionService> session_service_;
286 // GetSessionService won't recreate the SessionService.
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 64 SessionService* service() { return helper_.service(); }
71 SessionService* session_service = new SessionService(temp_dir_.path());
  /external/chromium/chrome/browser/sync/glue/
session_model_associator.h 359 SessionService* GetSessionService();

Completed in 292 milliseconds

1 2