OLD | NEW |
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/automation/automation_provider.h" | 5 #include "chrome/browser/automation/automation_provider.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "app/message_box_flags.h" | 9 #include "app/message_box_flags.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 #include "chrome/browser/find_bar_controller.h" | 68 #include "chrome/browser/find_bar_controller.h" |
69 #include "chrome/browser/find_notification_details.h" | 69 #include "chrome/browser/find_notification_details.h" |
70 #include "chrome/browser/host_content_settings_map.h" | 70 #include "chrome/browser/host_content_settings_map.h" |
71 #include "chrome/browser/importer/importer.h" | 71 #include "chrome/browser/importer/importer.h" |
72 #include "chrome/browser/importer/importer_data_types.h" | 72 #include "chrome/browser/importer/importer_data_types.h" |
73 #include "chrome/browser/io_thread.h" | 73 #include "chrome/browser/io_thread.h" |
74 #include "chrome/browser/location_bar.h" | 74 #include "chrome/browser/location_bar.h" |
75 #include "chrome/browser/login_prompt.h" | 75 #include "chrome/browser/login_prompt.h" |
76 #include "chrome/browser/net/url_request_mock_util.h" | 76 #include "chrome/browser/net/url_request_mock_util.h" |
77 #include "chrome/browser/platform_util.h" | 77 #include "chrome/browser/platform_util.h" |
78 #include "chrome/browser/pref_service.h" | 78 #include "chrome/browser/prefs/pref_service.h" |
79 #include "chrome/browser/printing/print_job.h" | 79 #include "chrome/browser/printing/print_job.h" |
80 #include "chrome/browser/profile_manager.h" | 80 #include "chrome/browser/profile_manager.h" |
81 #include "chrome/browser/renderer_host/render_process_host.h" | 81 #include "chrome/browser/renderer_host/render_process_host.h" |
82 #include "chrome/browser/renderer_host/render_view_host.h" | 82 #include "chrome/browser/renderer_host/render_view_host.h" |
83 #include "chrome/browser/ssl/ssl_manager.h" | 83 #include "chrome/browser/ssl/ssl_manager.h" |
84 #include "chrome/browser/ssl/ssl_blocking_page.h" | 84 #include "chrome/browser/ssl/ssl_blocking_page.h" |
85 #include "chrome/browser/tab_contents/infobar_delegate.h" | 85 #include "chrome/browser/tab_contents/infobar_delegate.h" |
86 #include "chrome/browser/tab_contents/tab_contents.h" | 86 #include "chrome/browser/tab_contents/tab_contents.h" |
87 #include "chrome/browser/tab_contents/tab_contents_view.h" | 87 #include "chrome/browser/tab_contents/tab_contents_view.h" |
88 #include "chrome/browser/translate/translate_infobar_delegate.h" | 88 #include "chrome/browser/translate/translate_infobar_delegate.h" |
(...skipping 3710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3799 } | 3799 } |
3800 | 3800 |
3801 void AutomationProvider::WaitForPopupMenuToOpen(IPC::Message* reply_message) { | 3801 void AutomationProvider::WaitForPopupMenuToOpen(IPC::Message* reply_message) { |
3802 NOTIMPLEMENTED(); | 3802 NOTIMPLEMENTED(); |
3803 } | 3803 } |
3804 #endif // !defined(TOOLKIT_VIEWS) | 3804 #endif // !defined(TOOLKIT_VIEWS) |
3805 | 3805 |
3806 void AutomationProvider::ResetToDefaultTheme() { | 3806 void AutomationProvider::ResetToDefaultTheme() { |
3807 profile_->ClearTheme(); | 3807 profile_->ClearTheme(); |
3808 } | 3808 } |
OLD | NEW |