Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 void BlockUntilLocalChangeForTest(base::TimeDelta timeout); | 226 void BlockUntilLocalChangeForTest(base::TimeDelta timeout); |
| 227 | 227 |
| 228 // Callback for when the session name has been computed. | 228 // Callback for when the session name has been computed. |
| 229 void OnSessionNameInitialized(const std::string& name); | 229 void OnSessionNameInitialized(const std::string& name); |
| 230 | 230 |
| 231 // If a valid favicon for the page at |url| is found, fills |png_favicon| with | 231 // If a valid favicon for the page at |url| is found, fills |png_favicon| with |
| 232 // the png-encoded image and returns true. Else, returns false. | 232 // the png-encoded image and returns true. Else, returns false. |
| 233 bool GetSyncedFaviconForPageURL(const std::string& url, | 233 bool GetSyncedFaviconForPageURL(const std::string& url, |
| 234 std::string* png_favicon) const; | 234 std::string* png_favicon) const; |
| 235 | 235 |
| 236 #if defined(UNIT_TEST) | |
|
akalin
2012/11/10 21:47:40
sorry, i wasn't clear -- i still want the "#if def
kuan
2012/11/11 00:17:22
Done.
| |
| 237 // Sets the machine tag for testing. | |
|
akalin
2012/11/10 21:47:40
you can remove the comment -- i think the function
kuan
2012/11/11 00:17:22
Done.
| |
| 238 void SetCurrentMachineTagForTesting(const std::string& machine_tag) { | |
| 239 current_machine_tag_ = machine_tag; | |
| 240 } | |
| 241 #endif // defined(UNIT_TEST) | |
| 242 | |
| 236 private: | 243 private: |
| 237 friend class SyncSessionModelAssociatorTest; | 244 friend class SyncSessionModelAssociatorTest; |
| 238 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, WriteSessionToNode); | 245 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, WriteSessionToNode); |
| 239 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, | 246 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, |
| 240 WriteFilledSessionToNode); | 247 WriteFilledSessionToNode); |
| 241 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, | 248 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, |
| 242 WriteForeignSessionToNode); | 249 WriteForeignSessionToNode); |
| 243 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, TabNodePoolEmpty); | 250 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, TabNodePoolEmpty); |
| 244 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, TabNodePoolNonEmpty); | 251 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, TabNodePoolNonEmpty); |
| 245 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, ValidTabs); | 252 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceSessionTest, ValidTabs); |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 543 std::map<std::string, linked_ptr<SyncedFaviconInfo> > synced_favicons_; | 550 std::map<std::string, linked_ptr<SyncedFaviconInfo> > synced_favicons_; |
| 544 // Map of page URL -> favicon url. | 551 // Map of page URL -> favicon url. |
| 545 std::map<std::string, std::string> synced_favicon_pages_; | 552 std::map<std::string, std::string> synced_favicon_pages_; |
| 546 | 553 |
| 547 DISALLOW_COPY_AND_ASSIGN(SessionModelAssociator); | 554 DISALLOW_COPY_AND_ASSIGN(SessionModelAssociator); |
| 548 }; | 555 }; |
| 549 | 556 |
| 550 } // namespace browser_sync | 557 } // namespace browser_sync |
| 551 | 558 |
| 552 #endif // CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ | 559 #endif // CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ |
| OLD | NEW |