OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/extensions/execute_code_in_tab_function.h" | 5 #include "chrome/browser/extensions/execute_code_in_tab_function.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/extensions/extension_tab_util.h" | 10 #include "chrome/browser/extensions/extension_tab_util.h" |
11 #include "chrome/browser/extensions/extension_tabs_module.h" | 11 #include "chrome/browser/extensions/extension_tabs_module.h" |
12 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 12 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
13 #include "chrome/browser/extensions/file_reader.h" | 13 #include "chrome/browser/extensions/file_reader.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
16 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 16 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
17 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
18 #include "chrome/common/extensions/extension_constants.h" | 18 #include "chrome/common/extensions/extension_constants.h" |
19 #include "chrome/common/extensions/extension_error_utils.h" | 19 #include "chrome/common/extensions/extension_error_utils.h" |
20 #include "chrome/common/extensions/extension_file_util.h" | 20 #include "chrome/common/extensions/extension_file_util.h" |
21 #include "chrome/common/extensions/extension_l10n_util.h" | 21 #include "chrome/common/extensions/extension_l10n_util.h" |
22 #include "chrome/common/extensions/extension_message_bundle.h" | 22 #include "chrome/common/extensions/extension_message_bundle.h" |
23 #include "chrome/common/extensions/extension_messages.h" | 23 #include "chrome/common/extensions/extension_messages.h" |
24 #include "content/browser/renderer_host/render_view_host.h" | 24 #include "content/browser/renderer_host/render_view_host.h" |
25 #include "content/browser/renderer_host/render_view_host.h" | 25 #include "content/browser/renderer_host/render_view_host.h" |
26 #include "content/browser/tab_contents/tab_contents.h" | 26 #include "content/browser/tab_contents/tab_contents.h" |
27 #include "content/common/notification_service.h" | |
28 | 27 |
29 namespace keys = extension_tabs_module_constants; | 28 namespace keys = extension_tabs_module_constants; |
30 | 29 |
31 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() | 30 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() |
32 : execute_tab_id_(-1), | 31 : execute_tab_id_(-1), |
33 all_frames_(false) { | 32 all_frames_(false) { |
34 } | 33 } |
35 | 34 |
36 ExecuteCodeInTabFunction::~ExecuteCodeInTabFunction() { | 35 ExecuteCodeInTabFunction::~ExecuteCodeInTabFunction() { |
37 } | 36 } |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 if (!error.empty()) { | 259 if (!error.empty()) { |
261 CHECK(!success); | 260 CHECK(!success); |
262 error_ = error; | 261 error_ = error; |
263 } | 262 } |
264 | 263 |
265 SendResponse(success); | 264 SendResponse(success); |
266 | 265 |
267 Observe(NULL); | 266 Observe(NULL); |
268 Release(); // balanced in Execute() | 267 Release(); // balanced in Execute() |
269 } | 268 } |
OLD | NEW |