Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: chrome/browser/extensions/execute_code_in_tab_function.cc

Issue 5089001: Cleanup: Include browser.h -> ui/browser.h [Part 3]. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes. Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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"
11 #include "chrome/browser/extensions/extension_tabs_module.h" 10 #include "chrome/browser/extensions/extension_tabs_module.h"
12 #include "chrome/browser/extensions/extension_tabs_module_constants.h" 11 #include "chrome/browser/extensions/extension_tabs_module_constants.h"
13 #include "chrome/browser/extensions/extensions_service.h" 12 #include "chrome/browser/extensions/extensions_service.h"
14 #include "chrome/browser/extensions/file_reader.h" 13 #include "chrome/browser/extensions/file_reader.h"
15 #include "chrome/browser/profile.h" 14 #include "chrome/browser/profile.h"
16 #include "chrome/browser/tab_contents/tab_contents.h" 15 #include "chrome/browser/tab_contents/tab_contents.h"
16 #include "chrome/browser/ui/browser.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/notification_service.h" 20 #include "chrome/common/notification_service.h"
21 21
22 namespace keys = extension_tabs_module_constants; 22 namespace keys = extension_tabs_module_constants;
23 23
24 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction() 24 ExecuteCodeInTabFunction::ExecuteCodeInTabFunction()
25 : execute_tab_id_(-1), 25 : execute_tab_id_(-1),
26 all_frames_(false) { 26 all_frames_(false) {
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 void ExecuteCodeInTabFunction::Observe(NotificationType type, 185 void ExecuteCodeInTabFunction::Observe(NotificationType type,
186 const NotificationSource& source, 186 const NotificationSource& source,
187 const NotificationDetails& details) { 187 const NotificationDetails& details) {
188 std::pair<int, bool>* result_details = 188 std::pair<int, bool>* result_details =
189 Details<std::pair<int, bool> >(details).ptr(); 189 Details<std::pair<int, bool> >(details).ptr();
190 if (result_details->first == request_id()) { 190 if (result_details->first == request_id()) {
191 SendResponse(result_details->second); 191 SendResponse(result_details->second);
192 Release(); // balanced in Execute() 192 Release(); // balanced in Execute()
193 } 193 }
194 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698