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

Side by Side Diff: extensions/shell/browser/shell_extensions_browser_client.cc

Issue 870163002: Move networking_private to src/extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move api_features and permissions Created 5 years, 10 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 "extensions/shell/browser/shell_extensions_browser_client.h" 5 #include "extensions/shell/browser/shell_extensions_browser_client.h"
6 6
7 #include "content/public/browser/browser_context.h"
7 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
8 #include "extensions/browser/api/extensions_api_client.h" 9 #include "extensions/browser/api/extensions_api_client.h"
9 #include "extensions/browser/api/generated_api_registration.h" 10 #include "extensions/browser/api/generated_api_registration.h"
10 #include "extensions/browser/app_sorting.h" 11 #include "extensions/browser/app_sorting.h"
11 #include "extensions/browser/event_router.h" 12 #include "extensions/browser/event_router.h"
12 #include "extensions/browser/extension_function_registry.h" 13 #include "extensions/browser/extension_function_registry.h"
13 #include "extensions/browser/null_app_sorting.h" 14 #include "extensions/browser/null_app_sorting.h"
14 #include "extensions/browser/updater/null_extension_cache.h" 15 #include "extensions/browser/updater/null_extension_cache.h"
15 #include "extensions/browser/url_request_util.h" 16 #include "extensions/browser/url_request_util.h"
16 #include "extensions/shell/browser/api/generated_api_registration.h" 17 #include "extensions/shell/browser/api/generated_api_registration.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 BrowserContext* context) { 65 BrowserContext* context) {
65 // app_shell only supports a single context. 66 // app_shell only supports a single context.
66 return NULL; 67 return NULL;
67 } 68 }
68 69
69 BrowserContext* ShellExtensionsBrowserClient::GetOriginalContext( 70 BrowserContext* ShellExtensionsBrowserClient::GetOriginalContext(
70 BrowserContext* context) { 71 BrowserContext* context) {
71 return context; 72 return context;
72 } 73 }
73 74
75 #if defined(OS_CHROMEOS)
76 std::string ShellExtensionsBrowserClient::GetUserIdHashFromContext(
77 content::BrowserContext* context) {
78 return "";
79 }
80 #endif
81
74 bool ShellExtensionsBrowserClient::IsGuestSession( 82 bool ShellExtensionsBrowserClient::IsGuestSession(
75 BrowserContext* context) const { 83 BrowserContext* context) const {
76 return false; 84 return false;
77 } 85 }
78 86
79 bool ShellExtensionsBrowserClient::IsExtensionIncognitoEnabled( 87 bool ShellExtensionsBrowserClient::IsExtensionIncognitoEnabled(
80 const std::string& extension_id, 88 const std::string& extension_id,
81 content::BrowserContext* context) const { 89 content::BrowserContext* context) const {
82 return false; 90 return false;
83 } 91 }
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 const std::string& min_version) { 222 const std::string& min_version) {
215 return true; 223 return true;
216 } 224 }
217 225
218 void ShellExtensionsBrowserClient::SetAPIClientForTest( 226 void ShellExtensionsBrowserClient::SetAPIClientForTest(
219 ExtensionsAPIClient* api_client) { 227 ExtensionsAPIClient* api_client) {
220 api_client_.reset(api_client); 228 api_client_.reset(api_client);
221 } 229 }
222 230
223 } // namespace extensions 231 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698