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

Side by Side Diff: chrome/browser/extensions/extension_service.cc

Issue 102103005: Move c/c/e/extension_set to top-level extensions/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/extension_service.h" 5 #include "chrome/browser/extensions/extension_service.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <set> 9 #include <set>
10 10
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 #include "webkit/browser/fileapi/file_system_context.h" 106 #include "webkit/browser/fileapi/file_system_context.h"
107 #endif 107 #endif
108 108
109 using content::BrowserContext; 109 using content::BrowserContext;
110 using content::BrowserThread; 110 using content::BrowserThread;
111 using content::DevToolsAgentHost; 111 using content::DevToolsAgentHost;
112 using extensions::CrxInstaller; 112 using extensions::CrxInstaller;
113 using extensions::Extension; 113 using extensions::Extension;
114 using extensions::ExtensionIdSet; 114 using extensions::ExtensionIdSet;
115 using extensions::ExtensionInfo; 115 using extensions::ExtensionInfo;
116 using extensions::ExtensionSet;
116 using extensions::FeatureSwitch; 117 using extensions::FeatureSwitch;
117 using extensions::InstallVerifier; 118 using extensions::InstallVerifier;
118 using extensions::ManagementPolicy; 119 using extensions::ManagementPolicy;
119 using extensions::Manifest; 120 using extensions::Manifest;
120 using extensions::PermissionMessage; 121 using extensions::PermissionMessage;
121 using extensions::PermissionMessages; 122 using extensions::PermissionMessages;
122 using extensions::PermissionSet; 123 using extensions::PermissionSet;
123 using extensions::SharedModuleInfo; 124 using extensions::SharedModuleInfo;
124 using extensions::UnloadedExtensionInfo; 125 using extensions::UnloadedExtensionInfo;
125 126
(...skipping 2668 matching lines...) Expand 10 before | Expand all | Expand 10 after
2794 } 2795 }
2795 2796
2796 void ExtensionService::AddUpdateObserver(extensions::UpdateObserver* observer) { 2797 void ExtensionService::AddUpdateObserver(extensions::UpdateObserver* observer) {
2797 update_observers_.AddObserver(observer); 2798 update_observers_.AddObserver(observer);
2798 } 2799 }
2799 2800
2800 void ExtensionService::RemoveUpdateObserver( 2801 void ExtensionService::RemoveUpdateObserver(
2801 extensions::UpdateObserver* observer) { 2802 extensions::UpdateObserver* observer) {
2802 update_observers_.RemoveObserver(observer); 2803 update_observers_.RemoveObserver(observer);
2803 } 2804 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service.h ('k') | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698