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

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

Issue 2305703003: Remove some unused linked_ptr.h includes in c/b/extensions/api (Closed)
Patch Set: Created 4 years, 3 months 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
« no previous file with comments | « chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/browser/extensions/api/signed_in_devices/signed_in_devices_mana ger.h" 5 #include "chrome/browser/extensions/api/signed_in_devices/signed_in_devices_mana ger.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/lazy_instance.h" 12 #include "base/lazy_instance.h"
13 #include "base/memory/linked_ptr.h"
14 #include "base/memory/scoped_vector.h" 13 #include "base/memory/scoped_vector.h"
15 #include "base/values.h" 14 #include "base/values.h"
16 #include "chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api. h" 15 #include "chrome/browser/extensions/api/signed_in_devices/signed_in_devices_api. h"
17 #include "chrome/browser/extensions/extension_service.h" 16 #include "chrome/browser/extensions/extension_service.h"
18 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
19 #include "chrome/browser/sync/profile_sync_service_factory.h" 18 #include "chrome/browser/sync/profile_sync_service_factory.h"
20 #include "chrome/common/extensions/api/signed_in_devices.h" 19 #include "chrome/common/extensions/api/signed_in_devices.h"
21 #include "components/browser_sync/browser/profile_sync_service.h" 20 #include "components/browser_sync/browser/profile_sync_service.h"
22 #include "components/sync/device_info/device_info.h" 21 #include "components/sync/device_info/device_info.h"
23 #include "extensions/browser/event_router.h" 22 #include "extensions/browser/event_router.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 } 156 }
158 157
159 void SignedInDevicesManager::OnExtensionUnloaded( 158 void SignedInDevicesManager::OnExtensionUnloaded(
160 content::BrowserContext* browser_context, 159 content::BrowserContext* browser_context,
161 const Extension* extension, 160 const Extension* extension,
162 UnloadedExtensionInfo::Reason reason) { 161 UnloadedExtensionInfo::Reason reason) {
163 RemoveChangeObserverForExtension(extension->id()); 162 RemoveChangeObserverForExtension(extension->id());
164 } 163 }
165 164
166 } // namespace extensions 165 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698