| 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_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ |
| 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
| 16 #include "extensions/common/manifest.h" | 16 #include "extensions/common/manifest.h" |
| 17 | 17 |
| 18 class Profile; | 18 class Profile; |
| 19 class SyncTest; | 19 class SyncTest; |
| 20 | 20 |
| 21 namespace extensions { | 21 namespace extensions { |
| 22 class Extension; | 22 class Extension; |
| 23 } | 23 } |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 std::string extension_name_prefix_; | 123 std::string extension_name_prefix_; |
| 124 ProfileExtensionNameMap profile_extensions_; | 124 ProfileExtensionNameMap profile_extensions_; |
| 125 StringMap id_to_name_; | 125 StringMap id_to_name_; |
| 126 TypeMap id_to_type_; | 126 TypeMap id_to_type_; |
| 127 bool setup_completed_; | 127 bool setup_completed_; |
| 128 | 128 |
| 129 DISALLOW_COPY_AND_ASSIGN(SyncExtensionHelper); | 129 DISALLOW_COPY_AND_ASSIGN(SyncExtensionHelper); |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ | 132 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SYNC_EXTENSION_HELPER_H_ |
| OLD | NEW |