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" | |
16 #include "chrome/browser/tab_contents/tab_contents.h" | 15 #include "chrome/browser/tab_contents/tab_contents.h" |
17 #include "chrome/common/extensions/extension.h" | 16 #include "chrome/common/extensions/extension.h" |
18 #include "chrome/common/extensions/extension_constants.h" | 17 #include "chrome/common/extensions/extension_constants.h" |
19 #include "chrome/common/extensions/extension_error_utils.h" | 18 #include "chrome/common/extensions/extension_error_utils.h" |
20 #include "chrome/common/notification_service.h" | 19 #include "chrome/common/notification_service.h" |
21 | 20 |
22 namespace keys = extension_tabs_module_constants; | 21 namespace keys = extension_tabs_module_constants; |
23 | 22 |
24 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() | 23 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() |
25 : execute_tab_id_(-1), | 24 : execute_tab_id_(-1), |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 void ExecuteCodeInTabFunction::Observe(NotificationType type, | 177 void ExecuteCodeInTabFunction::Observe(NotificationType type, |
179 const NotificationSource& source, | 178 const NotificationSource& source, |
180 const NotificationDetails& details) { | 179 const NotificationDetails& details) { |
181 std::pair<int, bool>* result_details = | 180 std::pair<int, bool>* result_details = |
182 Details<std::pair<int, bool> >(details).ptr(); | 181 Details<std::pair<int, bool> >(details).ptr(); |
183 if (result_details->first == request_id()) { | 182 if (result_details->first == request_id()) { |
184 SendResponse(result_details->second); | 183 SendResponse(result_details->second); |
185 Release(); // balanced in Execute() | 184 Release(); // balanced in Execute() |
186 } | 185 } |
187 } | 186 } |
OLD | NEW |