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

Side by Side Diff: chrome/browser/plugins/chrome_content_browser_client_plugins_part.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/plugins/chrome_content_browser_client_plugins_part.h" 5 #include "chrome/browser/plugins/chrome_content_browser_client_plugins_part.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/browser/plugins/plugin_info_message_filter.h" 8 #include "chrome/browser/plugins/plugin_info_message_filter.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/renderer_host/pepper/chrome_browser_pepper_host_factory .h" 10 #include "chrome/browser/renderer_host/pepper/chrome_browser_pepper_host_factory .h"
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 extension_set = 129 extension_set =
130 &extensions::ExtensionRegistry::Get(profile)->enabled_extensions(); 130 &extensions::ExtensionRegistry::Get(profile)->enabled_extensions();
131 } 131 }
132 132
133 // Allow access for whitelisted applications. 133 // Allow access for whitelisted applications.
134 if (chrome::IsExtensionOrSharedModuleWhitelisted( 134 if (chrome::IsExtensionOrSharedModuleWhitelisted(
135 url, extension_set, allowed_dev_channel_origins)) { 135 url, extension_set, allowed_dev_channel_origins)) {
136 return true; 136 return true;
137 } 137 }
138 #endif 138 #endif
139 chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); 139 version_info::Channel channel = chrome::VersionInfo::GetChannel();
140 // Allow dev channel APIs to be used on "Canary", "Dev", and "Unknown" 140 // Allow dev channel APIs to be used on "Canary", "Dev", and "Unknown"
141 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on 141 // releases of Chrome. Permitting "Unknown" allows these APIs to be used on
142 // Chromium builds as well. 142 // Chromium builds as well.
143 return channel <= chrome::VersionInfo::CHANNEL_DEV; 143 return channel <= version_info::Channel::DEV;
144 } 144 }
145 145
146 void ChromeContentBrowserClientPluginsPart::DidCreatePpapiPlugin( 146 void ChromeContentBrowserClientPluginsPart::DidCreatePpapiPlugin(
147 content::BrowserPpapiHost* browser_host) { 147 content::BrowserPpapiHost* browser_host) {
148 browser_host->GetPpapiHost()->AddHostFactoryFilter( 148 browser_host->GetPpapiHost()->AddHostFactoryFilter(
149 scoped_ptr<ppapi::host::HostFactory>( 149 scoped_ptr<ppapi::host::HostFactory>(
150 new chrome::ChromeBrowserPepperHostFactory(browser_host))); 150 new chrome::ChromeBrowserPepperHostFactory(browser_host)));
151 } 151 }
152 152
153 } // namespace plugins 153 } // namespace plugins
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_manager_browsertest.cc ('k') | chrome/browser/policy/policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698