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

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

Issue 11571014: Lazy load chrome.* APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android compilation Created 7 years, 9 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
« no previous file with comments | « chrome/renderer/extensions/request_sender.cc ('k') | chrome/renderer/extensions/runtime_custom_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/runtime_custom_bindings.h
diff --git a/chrome/renderer/extensions/runtime_custom_bindings.h b/chrome/renderer/extensions/runtime_custom_bindings.h
index 5ddf2482861883e57172a9fbad8a411847d07c15..d80071356d077feb7c67920e66f5992cdcc3daf7 100644
--- a/chrome/renderer/extensions/runtime_custom_bindings.h
+++ b/chrome/renderer/extensions/runtime_custom_bindings.h
@@ -17,18 +17,15 @@ namespace extensions {
// The native component of custom bindings for the chrome.runtime API.
class RuntimeCustomBindings : public ChromeV8Extension {
public:
- RuntimeCustomBindings(Dispatcher* dispatcher,
- ChromeV8Context* context);
+ RuntimeCustomBindings(Dispatcher* dispatcher, ChromeV8Context* context);
virtual ~RuntimeCustomBindings();
// Creates a new messaging channel to the given extension.
- static v8::Handle<v8::Value> OpenChannelToExtension(
- const v8::Arguments& args);
+ v8::Handle<v8::Value> OpenChannelToExtension(const v8::Arguments& args);
// Creates a new messaging channels for the specified native application.
- v8::Handle<v8::Value> OpenChannelToNativeApp(
- const v8::Arguments& args);
+ v8::Handle<v8::Value> OpenChannelToNativeApp(const v8::Arguments& args);
private:
v8::Handle<v8::Value> GetManifest(const v8::Arguments& args);
« no previous file with comments | « chrome/renderer/extensions/request_sender.cc ('k') | chrome/renderer/extensions/runtime_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698