/external/chromium_org/chrome/browser/sync/ |
open_tabs_ui_delegate.h | 42 virtual void DeleteForeignSession(const std::string& tag) = 0;
|
profile_sync_service_session_unittest.cc | 718 TEST_F(ProfileSyncServiceSessionTest, DeleteForeignSession) { 735 model_associator_->DeleteForeignSession(tag); 737 // Verify that deleteForeignSession did not trigger the 765 model_associator_->DeleteForeignSession(tag); 768 // Verify that deleteForeignSession triggers the [all...] |
/external/chromium/chrome/browser/sync/glue/ |
foreign_session_tracker.h | 59 bool DeleteForeignSession(const std::string& foreign_session_tag);
|
session_model_associator_unittest.cc | 127 ASSERT_FALSE(tracker.DeleteForeignSession(tag1)); 128 ASSERT_FALSE(tracker.DeleteForeignSession(tag3)); 140 ASSERT_TRUE(tracker.DeleteForeignSession(tag3));
|
foreign_session_tracker.cc | 82 bool ForeignSessionTracker::DeleteForeignSession(
|
session_model_associator.cc | 568 foreign_session_tracker_.DeleteForeignSession(foreign_session_tag); [all...] |
/external/chromium_org/chrome/browser/android/ |
foreign_session_helper.h | 37 void DeleteForeignSession(JNIEnv* env, jobject obj, jstring session_tag);
|
foreign_session_helper.cc | 292 void ForeignSessionHelper::DeleteForeignSession(JNIEnv* env, jobject obj, 296 open_tabs->DeleteForeignSession(ConvertJavaStringToUTF8(env, session_tag));
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
sessions_helper.h | 120 void DeleteForeignSession(int index, std::string session_tag);
|
two_client_sessions_sync_test.cc | 16 using sessions_helper::DeleteForeignSession; 179 DeleteForeignSession(1, sessions1[0]->session_tag); 204 DeleteForeignSession(1, sessions1[0]->session_tag);
|
sessions_helper.cc | 317 void DeleteForeignSession(int index, std::string session_tag) { 320 GetSessionModelAssociatorDeprecated()->DeleteForeignSession(session_tag);
|
/external/chromium_org/chrome/browser/sync/sessions2/ |
sessions_sync_manager.h | 127 virtual void DeleteForeignSession(const std::string& tag) OVERRIDE; 193 FRIEND_TEST_ALL_PREFIXES(SessionsSyncManagerTest, DeleteForeignSession); 230 // DeleteForeignSession below.
|
sessions_sync_manager.cc | 698 void SessionsSyncManager::DeleteForeignSession(const std::string& tag) { [all...] |
sessions_sync_manager_unittest.cc | 790 TEST_F(SessionsSyncManagerTest, DeleteForeignSession) { [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
session_model_associator.h | 190 virtual void DeleteForeignSession(const std::string& tag) OVERRIDE;
|
session_model_associator.cc | 654 // syncer::WriteTransaction, since DeleteForeignSession(std::string&) uses 657 DeleteForeignSession(transaction_tag); [all...] |
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
foreign_session_handler.cc | 165 web_ui()->RegisterMessageCallback("deleteForeignSession", 332 LOG(ERROR) << "Wrong number of args to deleteForeignSession"; 345 open_tabs->DeleteForeignSession(session_tag);
|