Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698