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/messaging_bindings.h" | 5 #include "chrome/renderer/extensions/messaging_bindings.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/common/extensions/api/messaging/message.h" | 16 #include "chrome/common/extensions/api/messaging/message.h" |
17 #include "chrome/common/extensions/extension_messages.h" | |
18 #include "chrome/common/extensions/manifest_handlers/externally_connectable.h" | 17 #include "chrome/common/extensions/manifest_handlers/externally_connectable.h" |
19 #include "chrome/common/extensions/message_bundle.h" | 18 #include "chrome/common/extensions/message_bundle.h" |
20 #include "chrome/common/url_constants.h" | 19 #include "chrome/common/url_constants.h" |
21 #include "chrome/renderer/extensions/chrome_v8_context.h" | 20 #include "chrome/renderer/extensions/chrome_v8_context.h" |
22 #include "chrome/renderer/extensions/chrome_v8_context_set.h" | 21 #include "chrome/renderer/extensions/chrome_v8_context_set.h" |
23 #include "chrome/renderer/extensions/chrome_v8_extension.h" | 22 #include "chrome/renderer/extensions/chrome_v8_extension.h" |
24 #include "chrome/renderer/extensions/dispatcher.h" | 23 #include "chrome/renderer/extensions/dispatcher.h" |
25 #include "chrome/renderer/extensions/event_bindings.h" | 24 #include "chrome/renderer/extensions/event_bindings.h" |
26 #include "chrome/renderer/extensions/scoped_persistent.h" | 25 #include "chrome/renderer/extensions/scoped_persistent.h" |
27 #include "content/public/renderer/render_thread.h" | 26 #include "content/public/renderer/render_thread.h" |
28 #include "content/public/renderer/render_view.h" | 27 #include "content/public/renderer/render_view.h" |
29 #include "content/public/renderer/v8_value_converter.h" | 28 #include "content/public/renderer/v8_value_converter.h" |
| 29 #include "extensions/common/extension_messages.h" |
30 #include "grit/renderer_resources.h" | 30 #include "grit/renderer_resources.h" |
31 #include "third_party/WebKit/public/web/WebScopedMicrotaskSuppression.h" | 31 #include "third_party/WebKit/public/web/WebScopedMicrotaskSuppression.h" |
32 #include "third_party/WebKit/public/web/WebScopedUserGesture.h" | 32 #include "third_party/WebKit/public/web/WebScopedUserGesture.h" |
33 #include "third_party/WebKit/public/web/WebScopedWindowFocusAllowedIndicator.h" | 33 #include "third_party/WebKit/public/web/WebScopedWindowFocusAllowedIndicator.h" |
34 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" | 34 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" |
35 #include "v8/include/v8.h" | 35 #include "v8/include/v8.h" |
36 | 36 |
37 // Message passing API example (in a content script): | 37 // Message passing API example (in a content script): |
38 // var extension = | 38 // var extension = |
39 // new chrome.Extension('00123456789abcdef0123456789abcdef0123456'); | 39 // new chrome.Extension('00123456789abcdef0123456789abcdef0123456'); |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 } else { | 427 } else { |
428 arguments.push_back(v8::Null(isolate)); | 428 arguments.push_back(v8::Null(isolate)); |
429 } | 429 } |
430 (*it)->module_system()->CallModuleMethod("messaging", | 430 (*it)->module_system()->CallModuleMethod("messaging", |
431 "dispatchOnDisconnect", | 431 "dispatchOnDisconnect", |
432 &arguments); | 432 &arguments); |
433 } | 433 } |
434 } | 434 } |
435 | 435 |
436 } // namespace extensions | 436 } // namespace extensions |
OLD | NEW |