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

Side by Side Diff: chrome/browser/content_settings/content_settings_internal_extension_provider.cc

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Rebase Created 3 years, 7 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
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/content_settings/content_settings_internal_extension_pr ovider.h" 5 #include "chrome/browser/content_settings/content_settings_internal_extension_pr ovider.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/pdf/pdf_extension_util.h" 10 #include "chrome/browser/pdf/pdf_extension_util.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/common/chrome_content_client.h" 12 #include "chrome/common/chrome_content_client.h"
13 #include "components/content_settings/core/browser/content_settings_rule.h" 13 #include "components/content_settings/core/browser/content_settings_rule.h"
14 #include "components/content_settings/core/common/content_settings.h" 14 #include "components/content_settings/core/common/content_settings.h"
15 #include "components/content_settings/core/common/content_settings_pattern.h" 15 #include "components/content_settings/core/common/content_settings_pattern.h"
16 #include "content/public/browser/notification_details.h" 16 #include "content/public/browser/notification_details.h"
17 #include "content/public/browser/notification_service.h" 17 #include "content/public/browser/notification_service.h"
18 #include "extensions/browser/extension_host.h" 18 #include "extensions/browser/extension_host.h"
19 #include "extensions/browser/extension_registry.h" 19 #include "extensions/browser/extension_registry.h"
20 #include "extensions/browser/notification_types.h" 20 #include "extensions/browser/notification_types.h"
21 #include "extensions/common/constants.h" 21 #include "extensions/common/constants.h"
22 #include "extensions/common/extension.h" 22 #include "extensions/common/extension.h"
23 #include "extensions/common/extension_set.h" 23 #include "extensions/common/extension_set.h"
24 #include "extensions/common/features/simple_feature.h" 24 #include "extensions/common/features/simple_feature.h"
25 #include "extensions/common/manifest_handlers/plugins_handler.h" 25 #include "extensions/common/manifest_handlers/plugins_handler.h"
26 26
27 using extensions::UnloadedExtensionInfo;
28
29 namespace content_settings { 27 namespace content_settings {
30 28
31 namespace { 29 namespace {
32 30
33 // This is the set of extensions that are allowed to access the internal 31 // This is the set of extensions that are allowed to access the internal
34 // remoting viewer plugin. 32 // remoting viewer plugin.
35 const char* const kRemotingViewerWhitelist[] = { 33 const char* const kRemotingViewerWhitelist[] = {
36 "gbchcmhmhahfdphkhkmpfmihenigjmpp", // Chrome Remote Desktop 34 "gbchcmhmhahfdphkhkmpfmihenigjmpp", // Chrome Remote Desktop
37 "kgngmbheleoaphbjbaiobfdepmghbfah", // Pre-release Chrome Remote Desktop 35 "kgngmbheleoaphbjbaiobfdepmghbfah", // Pre-release Chrome Remote Desktop
38 "odkaodonbgfohohmklejpjiejmcipmib", // Dogfood Chrome Remote Desktop 36 "odkaodonbgfohohmklejpjiejmcipmib", // Dogfood Chrome Remote Desktop
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 143
146 void InternalExtensionProvider::OnExtensionLoaded( 144 void InternalExtensionProvider::OnExtensionLoaded(
147 content::BrowserContext* browser_context, 145 content::BrowserContext* browser_context,
148 const extensions::Extension* extension) { 146 const extensions::Extension* extension) {
149 ApplyPluginContentSettingsForExtension(extension, CONTENT_SETTING_ALLOW); 147 ApplyPluginContentSettingsForExtension(extension, CONTENT_SETTING_ALLOW);
150 } 148 }
151 149
152 void InternalExtensionProvider::OnExtensionUnloaded( 150 void InternalExtensionProvider::OnExtensionUnloaded(
153 content::BrowserContext* browser_context, 151 content::BrowserContext* browser_context,
154 const extensions::Extension* extension, 152 const extensions::Extension* extension,
155 extensions::UnloadedExtensionInfo::Reason reason) { 153 extensions::UnloadedExtensionReason reason) {
156 ApplyPluginContentSettingsForExtension(extension, CONTENT_SETTING_DEFAULT); 154 ApplyPluginContentSettingsForExtension(extension, CONTENT_SETTING_DEFAULT);
157 } 155 }
158 156
159 void InternalExtensionProvider::ShutdownOnUIThread() { 157 void InternalExtensionProvider::ShutdownOnUIThread() {
160 DCHECK(CalledOnValidThread()); 158 DCHECK(CalledOnValidThread());
161 RemoveAllObservers(); 159 RemoveAllObservers();
162 registrar_.reset(); 160 registrar_.reset();
163 extension_registry_->RemoveObserver(this); 161 extension_registry_->RemoveObserver(this);
164 } 162 }
165 163
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 new base::Value(setting)); 214 new base::Value(setting));
217 } 215 }
218 } 216 }
219 NotifyObservers(primary_pattern, 217 NotifyObservers(primary_pattern,
220 secondary_pattern, 218 secondary_pattern,
221 CONTENT_SETTINGS_TYPE_PLUGINS, 219 CONTENT_SETTINGS_TYPE_PLUGINS,
222 resource); 220 resource);
223 } 221 }
224 222
225 } // namespace content_settings 223 } // namespace content_settings
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698