OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_RENDERER_EXTENSIONS_SEND_REQUEST_NATIVES_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_SEND_REQUEST_NATIVES_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "chrome/renderer/extensions/chrome_v8_extension.h" |
| 10 #include "chrome/renderer/extensions/extension_dispatcher.h" |
| 11 |
| 12 #include "v8/include/v8.h" |
| 13 |
| 14 class ExtensionRequestSender; |
| 15 |
| 16 namespace extensions { |
| 17 |
| 18 class SendRequestNatives : public ChromeV8Extension { |
| 19 public: |
| 20 SendRequestNatives(ExtensionDispatcher* extension_dispatcher, |
| 21 ExtensionRequestSender* request_sender); |
| 22 |
| 23 private: |
| 24 v8::Handle<v8::Value> GetNextRequestId(const v8::Arguments& args); |
| 25 // Starts an API request to the browser, with an optional callback. The |
| 26 // callback will be dispatched to EventBindings::HandleResponse. |
| 27 v8::Handle<v8::Value> StartRequest(const v8::Arguments& args); |
| 28 v8::Handle<v8::Value> StartRequestCommon(const v8::Arguments& args, |
| 29 ListValue* value_args); |
| 30 |
| 31 ExtensionRequestSender* request_sender_; |
| 32 }; |
| 33 |
| 34 } // namespace extensions |
| 35 |
| 36 #endif // CHROME_RENDERER_EXTENSIONS_SEND_REQUEST_NATIVES_H_ |
OLD | NEW |