OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/callback.h" | 7 #include "base/callback.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.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/extensions_service.h" | 13 #include "chrome/browser/extensions/extensions_service.h" |
14 #include "chrome/browser/extensions/file_reader.h" | 14 #include "chrome/browser/extensions/file_reader.h" |
| 15 #include "chrome/browser/profile.h" |
15 #include "chrome/browser/tab_contents/tab_contents.h" | 16 #include "chrome/browser/tab_contents/tab_contents.h" |
16 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
17 #include "chrome/common/extensions/extension_constants.h" | 18 #include "chrome/common/extensions/extension_constants.h" |
18 #include "chrome/common/extensions/extension_error_utils.h" | 19 #include "chrome/common/extensions/extension_error_utils.h" |
19 #include "chrome/common/notification_service.h" | 20 #include "chrome/common/notification_service.h" |
20 | 21 |
21 namespace keys = extension_tabs_module_constants; | 22 namespace keys = extension_tabs_module_constants; |
22 | 23 |
23 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() | 24 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() |
24 : execute_tab_id_(-1), | 25 : execute_tab_id_(-1), |
(...skipping 152 matching lines...) Loading... |
177 void ExecuteCodeInTabFunction::Observe(NotificationType type, | 178 void ExecuteCodeInTabFunction::Observe(NotificationType type, |
178 const NotificationSource& source, | 179 const NotificationSource& source, |
179 const NotificationDetails& details) { | 180 const NotificationDetails& details) { |
180 std::pair<int, bool>* result_details = | 181 std::pair<int, bool>* result_details = |
181 Details<std::pair<int, bool> >(details).ptr(); | 182 Details<std::pair<int, bool> >(details).ptr(); |
182 if (result_details->first == request_id()) { | 183 if (result_details->first == request_id()) { |
183 SendResponse(result_details->second); | 184 SendResponse(result_details->second); |
184 Release(); // balanced in Execute() | 185 Release(); // balanced in Execute() |
185 } | 186 } |
186 } | 187 } |
OLD | NEW |