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

Side by Side Diff: extensions/browser/test_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: Linux fix 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/browser/test_extensions_browser_client.h" 5 #include "extensions/browser/test_extensions_browser_client.h"
6 6
7 #include "content/public/browser/browser_context.h" 7 #include "content/public/browser/browser_context.h"
8 #include "extensions/browser/app_sorting.h" 8 #include "extensions/browser/app_sorting.h"
9 #include "extensions/browser/extension_host_delegate.h" 9 #include "extensions/browser/extension_host_delegate.h"
10 #include "extensions/browser/test_runtime_api_delegate.h" 10 #include "extensions/browser/test_runtime_api_delegate.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 if (context == main_context_) 65 if (context == main_context_)
66 return incognito_context_; 66 return incognito_context_;
67 return NULL; 67 return NULL;
68 } 68 }
69 69
70 BrowserContext* TestExtensionsBrowserClient::GetOriginalContext( 70 BrowserContext* TestExtensionsBrowserClient::GetOriginalContext(
71 BrowserContext* context) { 71 BrowserContext* context) {
72 return main_context_; 72 return main_context_;
73 } 73 }
74 74
75 std::string TestExtensionsBrowserClient::GetUserIdHashFromContext(
76 content::BrowserContext* context) {
77 return context->GetPath().BaseName().value();
James Cook 2015/01/24 03:59:24 I would just return the empty string, or maybe a k
stevenjb 2015/01/26 20:36:19 Done.
78 }
79
75 bool TestExtensionsBrowserClient::IsGuestSession( 80 bool TestExtensionsBrowserClient::IsGuestSession(
76 BrowserContext* context) const { 81 BrowserContext* context) const {
77 return false; 82 return false;
78 } 83 }
79 84
80 bool TestExtensionsBrowserClient::IsExtensionIncognitoEnabled( 85 bool TestExtensionsBrowserClient::IsExtensionIncognitoEnabled(
81 const std::string& extension_id, 86 const std::string& extension_id,
82 content::BrowserContext* context) const { 87 content::BrowserContext* context) const {
83 return false; 88 return false;
84 } 89 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 bool TestExtensionsBrowserClient::IsBackgroundUpdateAllowed() { 185 bool TestExtensionsBrowserClient::IsBackgroundUpdateAllowed() {
181 return true; 186 return true;
182 } 187 }
183 188
184 bool TestExtensionsBrowserClient::IsMinBrowserVersionSupported( 189 bool TestExtensionsBrowserClient::IsMinBrowserVersionSupported(
185 const std::string& min_version) { 190 const std::string& min_version) {
186 return true; 191 return true;
187 } 192 }
188 193
189 } // namespace extensions 194 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698