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

Side by Side Diff: extensions/test/test_extensions_client.cc

Issue 575113002: Move Webstore URL concepts to //extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ENABLE_EXTENSIONS guard in core chrome code Created 6 years, 3 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
« no previous file with comments | « extensions/test/test_extensions_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/test/test_extensions_client.h" 5 #include "extensions/test/test_extensions_client.h"
6 6
7 #include "extensions/common/api/generated_schemas.h" 7 #include "extensions/common/api/generated_schemas.h"
8 #include "extensions/common/common_manifest_handlers.h" 8 #include "extensions/common/common_manifest_handlers.h"
9 #include "extensions/common/extension_urls.h"
9 #include "extensions/common/features/api_feature.h" 10 #include "extensions/common/features/api_feature.h"
10 #include "extensions/common/features/base_feature_provider.h" 11 #include "extensions/common/features/base_feature_provider.h"
11 #include "extensions/common/features/feature_provider.h" 12 #include "extensions/common/features/feature_provider.h"
12 #include "extensions/common/features/json_feature_provider_source.h" 13 #include "extensions/common/features/json_feature_provider_source.h"
13 #include "extensions/common/features/manifest_feature.h" 14 #include "extensions/common/features/manifest_feature.h"
14 #include "extensions/common/features/permission_feature.h" 15 #include "extensions/common/features/permission_feature.h"
15 #include "extensions/common/manifest_handler.h" 16 #include "extensions/common/manifest_handler.h"
16 #include "extensions/common/permissions/extensions_api_permissions.h" 17 #include "extensions/common/permissions/extensions_api_permissions.h"
17 #include "extensions/common/permissions/permissions_info.h" 18 #include "extensions/common/permissions/permissions_info.h"
18 #include "extensions/common/url_pattern_set.h" 19 #include "extensions/common/url_pattern_set.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 return core_api::GeneratedSchemas::Get(name); 136 return core_api::GeneratedSchemas::Get(name);
136 } 137 }
137 138
138 void TestExtensionsClient::RegisterAPISchemaResources(ExtensionAPI* api) const { 139 void TestExtensionsClient::RegisterAPISchemaResources(ExtensionAPI* api) const {
139 } 140 }
140 141
141 bool TestExtensionsClient::ShouldSuppressFatalErrors() const { 142 bool TestExtensionsClient::ShouldSuppressFatalErrors() const {
142 return true; 143 return true;
143 } 144 }
144 145
146 std::string TestExtensionsClient::GetWebstoreBaseURL() const {
147 return extension_urls::kChromeWebstoreBaseURL;
148 }
149
150 std::string TestExtensionsClient::GetWebstoreUpdateURL() const {
151 return extension_urls::kChromeWebstoreUpdateURL;
152 }
153
154 bool TestExtensionsClient::IsBlacklistUpdateURL(const GURL& url) const {
155 return true;
156 }
157
145 } // namespace extensions 158 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/test/test_extensions_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698