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 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <set> | 9 #include <set> |
11 #include <string> | 10 #include <string> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
15 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
16 #include "base/format_macros.h" | 15 #include "base/format_macros.h" |
17 #include "base/gtest_prod_util.h" | 16 #include "base/gtest_prod_util.h" |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 std::map<std::string, linked_ptr<SyncedFaviconInfo> > synced_favicons_; | 558 std::map<std::string, linked_ptr<SyncedFaviconInfo> > synced_favicons_; |
560 // Map of page URL -> favicon url. | 559 // Map of page URL -> favicon url. |
561 std::map<std::string, std::string> synced_favicon_pages_; | 560 std::map<std::string, std::string> synced_favicon_pages_; |
562 | 561 |
563 DISALLOW_COPY_AND_ASSIGN(SessionModelAssociator); | 562 DISALLOW_COPY_AND_ASSIGN(SessionModelAssociator); |
564 }; | 563 }; |
565 | 564 |
566 } // namespace browser_sync | 565 } // namespace browser_sync |
567 | 566 |
568 #endif // CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ | 567 #endif // CHROME_BROWSER_SYNC_GLUE_SESSION_MODEL_ASSOCIATOR_H_ |
OLD | NEW |