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

Side by Side Diff: extensions/common/extension_api_stub.cc

Issue 377753003: Remove GetContexts() from the public interface of extensions::Feature. It was (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « extensions/common/extension_api.cc ('k') | extensions/common/features/api_feature.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Stub methods to be used when extensions are disabled 5 // Stub methods to be used when extensions are disabled
6 // i.e. ENABLE_EXTENSIONS is not defined 6 // i.e. ENABLE_EXTENSIONS is not defined
7 7
8 #include "extensions/common/extension_api.h" 8 #include "extensions/common/extension_api.h"
9 9
10 #include "extensions/common/features/feature.h" 10 #include "extensions/common/features/feature.h"
(...skipping 18 matching lines...) Expand all
29 return Feature::CreateAvailability(Feature::NOT_PRESENT, ""); 29 return Feature::CreateAvailability(Feature::NOT_PRESENT, "");
30 } 30 }
31 31
32 bool ExtensionAPI::IsAnyFeatureAvailableToContext(const Feature& api, 32 bool ExtensionAPI::IsAnyFeatureAvailableToContext(const Feature& api,
33 const Extension* extension, 33 const Extension* extension,
34 Feature::Context context, 34 Feature::Context context,
35 const GURL& url) { 35 const GURL& url) {
36 return false; 36 return false;
37 } 37 }
38 38
39 bool ExtensionAPI::IsPrivileged(const std::string& full_name) { 39 bool ExtensionAPI::IsAvailableInUntrustedContext(const std::string& full_name,
40 const Extension* extension) {
40 return false; 41 return false;
41 } 42 }
42 43
43 const base::DictionaryValue* ExtensionAPI::GetSchema( 44 const base::DictionaryValue* ExtensionAPI::GetSchema(
44 const std::string& full_name) { 45 const std::string& full_name) {
45 return NULL; 46 return NULL;
46 } 47 }
47 48
48 Feature* ExtensionAPI::GetFeatureDependency(const std::string& name) { 49 Feature* ExtensionAPI::GetFeatureDependency(const std::string& name) {
49 return NULL; 50 return NULL;
50 } 51 }
51 52
52 } // namespace extensions 53 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/extension_api.cc ('k') | extensions/common/features/api_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698