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); |