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

Side by Side Diff: extensions/shell/common/shell_extensions_client.cc

Issue 2202733003: [Extensions] Remove JSONFeatureProvider, SimpleFeature::Parse (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Lei's Created 4 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
« no previous file with comments | « extensions/extensions.gypi ('k') | extensions/test/test_extensions_client.cc » ('j') | 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/shell/common/shell_extensions_client.h" 5 #include "extensions/shell/common/shell_extensions_client.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "extensions/common/api/generated_schemas.h" 10 #include "extensions/common/api/generated_schemas.h"
11 #include "extensions/common/common_manifest_handlers.h" 11 #include "extensions/common/common_manifest_handlers.h"
12 #include "extensions/common/extension_urls.h" 12 #include "extensions/common/extension_urls.h"
13 #include "extensions/common/features/api_feature.h" 13 #include "extensions/common/features/api_feature.h"
14 #include "extensions/common/features/behavior_feature.h" 14 #include "extensions/common/features/behavior_feature.h"
15 #include "extensions/common/features/json_feature_provider.h"
16 #include "extensions/common/features/json_feature_provider_source.h" 15 #include "extensions/common/features/json_feature_provider_source.h"
17 #include "extensions/common/features/manifest_feature.h" 16 #include "extensions/common/features/manifest_feature.h"
18 #include "extensions/common/features/permission_feature.h" 17 #include "extensions/common/features/permission_feature.h"
19 #include "extensions/common/features/simple_feature.h" 18 #include "extensions/common/features/simple_feature.h"
20 #include "extensions/common/manifest_handler.h" 19 #include "extensions/common/manifest_handler.h"
21 #include "extensions/common/permissions/permission_message_provider.h" 20 #include "extensions/common/permissions/permission_message_provider.h"
22 #include "extensions/common/permissions/permissions_info.h" 21 #include "extensions/common/permissions/permissions_info.h"
23 #include "extensions/common/permissions/permissions_provider.h" 22 #include "extensions/common/permissions/permissions_provider.h"
24 #include "extensions/common/url_pattern_set.h" 23 #include "extensions/common/url_pattern_set.h"
25 #include "extensions/shell/common/api/generated_schemas.h" 24 #include "extensions/shell/common/api/generated_schemas.h"
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 return extension_urls::kChromeWebstoreUpdateURL; 191 return extension_urls::kChromeWebstoreUpdateURL;
193 } 192 }
194 193
195 bool ShellExtensionsClient::IsBlacklistUpdateURL(const GURL& url) const { 194 bool ShellExtensionsClient::IsBlacklistUpdateURL(const GURL& url) const {
196 // TODO(rockot): Maybe we want to do something else here. For now we accept 195 // TODO(rockot): Maybe we want to do something else here. For now we accept
197 // any URL as a blacklist URL because we don't really care. 196 // any URL as a blacklist URL because we don't really care.
198 return true; 197 return true;
199 } 198 }
200 199
201 } // namespace extensions 200 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/extensions.gypi ('k') | extensions/test/test_extensions_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698