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

Unified Diff: chrome/renderer/extensions/api_definitions_natives.h

Issue 10025007: Convert tabs, windows, and extension APIs to feature system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove obsolete special cases from ExtensionPermissionSet Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/extensions/api_definitions_natives.h
diff --git a/chrome/renderer/extensions/api_definitions_natives.h b/chrome/renderer/extensions/api_definitions_natives.h
index 48a9abe874e608a8294d485f5ab17dc9d7abd350..e8374c4cde8cd3417ece0ff0940a601d8ecf18cd 100644
--- a/chrome/renderer/extensions/api_definitions_natives.h
+++ b/chrome/renderer/extensions/api_definitions_natives.h
@@ -23,6 +23,10 @@ class ApiDefinitionsNatives : public ChromeV8Extension {
// the calling context.
v8::Handle<v8::Value> GetExtensionAPIDefinition(const v8::Arguments& args);
+ // bool IsMemberAllowed(string namespace, object memberSchema)
jameskozianski 2012/04/10 20:46:45 The signature here takes two arguments, but only o
+ // Returns true if the member is allowed for the current context.
+ v8::Handle<v8::Value> IsMemberAllowed(const v8::Arguments& args);
+
DISALLOW_COPY_AND_ASSIGN(ApiDefinitionsNatives);
};

Powered by Google App Engine
This is Rietveld 408576698