/external/chromium_org/chrome/browser/sessions/ |
session_service_factory.h | 15 // the associated SessionService. 26 static SessionService* GetForProfile(Profile* profile); 32 static SessionService* GetForProfileIfExisting(Profile* profile); 37 static SessionService* GetForProfileForSessionRestore(Profile* profile); 47 static void SetForTestProfile(Profile* profile, SessionService* service) {
|
session_service_factory.cc | 13 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { 15 // For Android we do not store sessions in the SessionService. 18 return static_cast<SessionService*>( 24 SessionService* SessionServiceFactory::GetForProfileIfExisting( 27 // For Android we do not store sessions in the SessionService. 30 return static_cast<SessionService*>( 36 SessionService* SessionServiceFactory::GetForProfileForSessionRestore( 38 SessionService* service = GetForProfile(profile); 71 "SessionService", 80 SessionService* service = NULL [all...] |
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 | 184 // SessionService ------------------------------------------------------------- 186 SessionService::SessionService(Profile* profile) 197 SessionService::SessionService(const base::FilePath& save_path) 208 SessionService::~SessionService() { 209 // The BrowserList should outlive the SessionService since it's static and 210 // the SessionService is a BrowserContextKeyedService. 215 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 | 53 SessionService* session_service = new SessionService(path_); 57 window_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL); 93 SessionService* session_service = new SessionService(path_); 151 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL); 159 SessionService* service() { return helper_.service(); } 351 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL); 414 window2_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL); 460 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 | 45 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 | 421 SessionService* session_service = 458 SessionService* session_service = 652 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_org/chrome/browser/ui/toolbar/ |
recent_tabs_sub_menu_model_unittest.cc | 219 // Create a SessionService for the profile (profile owns the service) and add 221 SessionService* session_service = new SessionService(profile()); 226 window_id, Browser::TYPE_TABBED, SessionService::TYPE_NORMAL);
|