| OLD | NEW |
| 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 #include "chrome/renderer/extensions/page_actions_custom_bindings.h" | 5 #include "chrome/renderer/extensions/page_actions_custom_bindings.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "chrome/common/extensions/api/extension_action/action_info.h" |
| 10 #include "chrome/common/extensions/extension.h" |
| 9 #include "chrome/renderer/extensions/dispatcher.h" | 11 #include "chrome/renderer/extensions/dispatcher.h" |
| 10 #include "grit/renderer_resources.h" | 12 #include "grit/renderer_resources.h" |
| 11 #include "v8/include/v8.h" | 13 #include "v8/include/v8.h" |
| 12 | 14 |
| 13 namespace extensions { | 15 namespace extensions { |
| 14 | 16 |
| 15 PageActionsCustomBindings::PageActionsCustomBindings( | 17 PageActionsCustomBindings::PageActionsCustomBindings( |
| 16 Dispatcher* dispatcher) | 18 Dispatcher* dispatcher) |
| 17 : ChromeV8Extension(dispatcher) { | 19 : ChromeV8Extension(dispatcher) { |
| 18 RouteStaticFunction("GetCurrentPageActions", &GetCurrentPageActions); | 20 RouteStaticFunction("GetCurrentPageActions", &GetCurrentPageActions); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 33 if (extension->page_action_info()) { | 35 if (extension->page_action_info()) { |
| 34 std::string id = extension->page_action_info()->id; | 36 std::string id = extension->page_action_info()->id; |
| 35 page_action_vector->Set(v8::Integer::New(0), | 37 page_action_vector->Set(v8::Integer::New(0), |
| 36 v8::String::New(id.c_str(), id.size())); | 38 v8::String::New(id.c_str(), id.size())); |
| 37 } | 39 } |
| 38 | 40 |
| 39 return page_action_vector; | 41 return page_action_vector; |
| 40 } | 42 } |
| 41 | 43 |
| 42 } // extensions | 44 } // extensions |
| OLD | NEW |