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

Side by Side Diff: chrome/renderer/extensions/runtime_custom_bindings.h

Issue 12632004: Revert 186643 - Caused a 10% regression on SunSpider benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ 5 #ifndef CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
6 #define CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ 6 #define CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/renderer/extensions/chrome_v8_extension.h" 9 #include "chrome/renderer/extensions/chrome_v8_extension.h"
10 #include "v8/include/v8.h" 10 #include "v8/include/v8.h"
11 11
12 class ExtensionDispatcher; 12 class ExtensionDispatcher;
13 class ChromeV8Context; 13 class ChromeV8Context;
14 14
15 namespace extensions { 15 namespace extensions {
16 16
17 // The native component of custom bindings for the chrome.runtime API. 17 // The native component of custom bindings for the chrome.runtime API.
18 class RuntimeCustomBindings : public ChromeV8Extension { 18 class RuntimeCustomBindings : public ChromeV8Extension {
19 public: 19 public:
20 RuntimeCustomBindings(Dispatcher* dispatcher, ChromeV8Context* context); 20 RuntimeCustomBindings(Dispatcher* dispatcher,
21 ChromeV8Context* context);
21 22
22 virtual ~RuntimeCustomBindings(); 23 virtual ~RuntimeCustomBindings();
23 24
24 // Creates a new messaging channel to the given extension. 25 // Creates a new messaging channel to the given extension.
25 v8::Handle<v8::Value> OpenChannelToExtension(const v8::Arguments& args); 26 static v8::Handle<v8::Value> OpenChannelToExtension(
27 const v8::Arguments& args);
26 28
27 // Creates a new messaging channels for the specified native application. 29 // Creates a new messaging channels for the specified native application.
28 v8::Handle<v8::Value> OpenChannelToNativeApp(const v8::Arguments& args); 30 v8::Handle<v8::Value> OpenChannelToNativeApp(
31 const v8::Arguments& args);
29 32
30 private: 33 private:
31 v8::Handle<v8::Value> GetManifest(const v8::Arguments& args); 34 v8::Handle<v8::Value> GetManifest(const v8::Arguments& args);
32 35
33 ChromeV8Context* context_; 36 ChromeV8Context* context_;
34 }; 37 };
35 38
36 } // extensions 39 } // extensions
37 40
38 #endif // CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ 41 #endif // CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
OLDNEW
« 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