| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGE
R_H__ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGE
R_H__ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGE
R_H__ | 6 #define CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGE
R_H__ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/scoped_observer.h" | 14 #include "base/scoped_observer.h" |
| 15 #include "components/sync/device_info/device_info_tracker.h" | 15 #include "components/sync/device_info/device_info_tracker.h" |
| 16 #include "extensions/browser/browser_context_keyed_api_factory.h" | 16 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 17 #include "extensions/browser/event_router.h" | 17 #include "extensions/browser/event_router.h" |
| 18 #include "extensions/browser/extension_registry_observer.h" | 18 #include "extensions/browser/extension_registry_observer.h" |
| 19 | 19 |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class BrowserContext; | 23 class BrowserContext; |
| 24 class NotificationDetails; | |
| 25 class NotificationObserver; | |
| 26 class NotificationRegistrar; | 24 class NotificationRegistrar; |
| 27 } // namespace content | 25 } // namespace content |
| 28 | 26 |
| 29 namespace extensions { | 27 namespace extensions { |
| 30 class BrowserContextKeyedAPI; | 28 class BrowserContextKeyedAPI; |
| 31 class ExtensionRegistry; | 29 class ExtensionRegistry; |
| 32 | 30 |
| 33 struct EventListenerInfo; | 31 struct EventListenerInfo; |
| 34 | 32 |
| 35 // An object of this class is created for each extension that has registered | 33 // An object of this class is created for each extension that has registered |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 extension_registry_observer_; | 97 extension_registry_observer_; |
| 100 | 98 |
| 101 FRIEND_TEST_ALL_PREFIXES(SignedInDevicesManager, UpdateListener); | 99 FRIEND_TEST_ALL_PREFIXES(SignedInDevicesManager, UpdateListener); |
| 102 | 100 |
| 103 DISALLOW_COPY_AND_ASSIGN(SignedInDevicesManager); | 101 DISALLOW_COPY_AND_ASSIGN(SignedInDevicesManager); |
| 104 }; | 102 }; |
| 105 | 103 |
| 106 } // namespace extensions | 104 } // namespace extensions |
| 107 | 105 |
| 108 #endif // CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MAN
AGER_H__ | 106 #endif // CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MAN
AGER_H__ |
| OLD | NEW |