OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "extensions/renderer/context_menus_custom_bindings.h" | 5 #include "extensions/renderer/context_menus_custom_bindings.h" |
6 | 6 |
| 7 #include <stdint.h> |
| 8 |
7 #include "base/bind.h" | 9 #include "base/bind.h" |
8 #include "content/public/renderer/render_thread.h" | 10 #include "content/public/renderer/render_thread.h" |
9 #include "extensions/common/extension_messages.h" | 11 #include "extensions/common/extension_messages.h" |
10 #include "v8/include/v8.h" | 12 #include "v8/include/v8.h" |
11 | 13 |
12 namespace { | 14 namespace { |
13 | 15 |
14 void GetNextContextMenuId(const v8::FunctionCallbackInfo<v8::Value>& args) { | 16 void GetNextContextMenuId(const v8::FunctionCallbackInfo<v8::Value>& args) { |
15 int context_menu_id = -1; | 17 int context_menu_id = -1; |
16 content::RenderThread::Get()->Send( | 18 content::RenderThread::Get()->Send( |
17 new ExtensionHostMsg_GenerateUniqueID(&context_menu_id)); | 19 new ExtensionHostMsg_GenerateUniqueID(&context_menu_id)); |
18 args.GetReturnValue().Set(static_cast<int32_t>(context_menu_id)); | 20 args.GetReturnValue().Set(static_cast<int32_t>(context_menu_id)); |
19 } | 21 } |
20 | 22 |
21 } // namespace | 23 } // namespace |
22 | 24 |
23 namespace extensions { | 25 namespace extensions { |
24 | 26 |
25 ContextMenusCustomBindings::ContextMenusCustomBindings(ScriptContext* context) | 27 ContextMenusCustomBindings::ContextMenusCustomBindings(ScriptContext* context) |
26 : ObjectBackedNativeHandler(context) { | 28 : ObjectBackedNativeHandler(context) { |
27 RouteFunction("GetNextContextMenuId", base::Bind(&GetNextContextMenuId)); | 29 RouteFunction("GetNextContextMenuId", base::Bind(&GetNextContextMenuId)); |
28 } | 30 } |
29 | 31 |
30 } // extensions | 32 } // extensions |
OLD | NEW |