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

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: Created 5 years, 11 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_thread.h" 7 #include "content/public/browser/browser_thread.h"
8 #include "extensions/browser/api/extensions_api_client.h" 8 #include "extensions/browser/api/extensions_api_client.h"
9 #include "extensions/browser/api/generated_api_registration.h" 9 #include "extensions/browser/api/generated_api_registration.h"
10 #include "extensions/browser/app_sorting.h" 10 #include "extensions/browser/app_sorting.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 BrowserContext* context) { 64 BrowserContext* context) {
65 // app_shell only supports a single context. 65 // app_shell only supports a single context.
66 return NULL; 66 return NULL;
67 } 67 }
68 68
69 BrowserContext* ShellExtensionsBrowserClient::GetOriginalContext( 69 BrowserContext* ShellExtensionsBrowserClient::GetOriginalContext(
70 BrowserContext* context) { 70 BrowserContext* context) {
71 return context; 71 return context;
72 } 72 }
73 73
74 std::string ShellExtensionsBrowserClient::GetUserIdHashFromContext(
75 content::BrowserContext* context) {
76 return context->GetPath().BaseName().value();
77 }
78
74 bool ShellExtensionsBrowserClient::IsGuestSession( 79 bool ShellExtensionsBrowserClient::IsGuestSession(
75 BrowserContext* context) const { 80 BrowserContext* context) const {
76 return false; 81 return false;
77 } 82 }
78 83
79 bool ShellExtensionsBrowserClient::IsExtensionIncognitoEnabled( 84 bool ShellExtensionsBrowserClient::IsExtensionIncognitoEnabled(
80 const std::string& extension_id, 85 const std::string& extension_id,
81 content::BrowserContext* context) const { 86 content::BrowserContext* context) const {
82 return false; 87 return false;
83 } 88 }
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 const std::string& min_version) { 219 const std::string& min_version) {
215 return true; 220 return true;
216 } 221 }
217 222
218 void ShellExtensionsBrowserClient::SetAPIClientForTest( 223 void ShellExtensionsBrowserClient::SetAPIClientForTest(
219 ExtensionsAPIClient* api_client) { 224 ExtensionsAPIClient* api_client) {
220 api_client_.reset(api_client); 225 api_client_.reset(api_client);
221 } 226 }
222 227
223 } // namespace extensions 228 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698