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/automation/testing_automation_provider.h" | 5 #include "chrome/browser/automation/testing_automation_provider.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 #include "chrome/browser/ui/login/login_prompt.h" | 98 #include "chrome/browser/ui/login/login_prompt.h" |
99 #include "chrome/browser/ui/omnibox/location_bar.h" | 99 #include "chrome/browser/ui/omnibox/location_bar.h" |
100 #include "chrome/browser/ui/omnibox/omnibox_view.h" | 100 #include "chrome/browser/ui/omnibox/omnibox_view.h" |
101 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" | 101 #include "chrome/browser/ui/search_engines/keyword_editor_controller.h" |
102 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 102 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
103 #include "chrome/common/automation_messages.h" | 103 #include "chrome/common/automation_messages.h" |
104 #include "chrome/common/chrome_constants.h" | 104 #include "chrome/common/chrome_constants.h" |
105 #include "chrome/common/chrome_notification_types.h" | 105 #include "chrome/common/chrome_notification_types.h" |
106 #include "chrome/common/chrome_paths.h" | 106 #include "chrome/common/chrome_paths.h" |
107 #include "chrome/common/chrome_switches.h" | 107 #include "chrome/common/chrome_switches.h" |
108 #include "chrome/common/chrome_view_types.h" | 108 #include "chrome/common/chrome_view_type.h" |
109 #include "chrome/common/extensions/extension.h" | 109 #include "chrome/common/extensions/extension.h" |
110 #include "chrome/common/extensions/url_pattern.h" | 110 #include "chrome/common/extensions/url_pattern.h" |
111 #include "chrome/common/extensions/url_pattern_set.h" | 111 #include "chrome/common/extensions/url_pattern_set.h" |
112 #include "chrome/common/pref_names.h" | 112 #include "chrome/common/pref_names.h" |
113 #include "chrome/common/render_messages.h" | 113 #include "chrome/common/render_messages.h" |
114 #include "chrome/common/url_constants.h" | 114 #include "chrome/common/url_constants.h" |
115 #include "content/browser/plugin_service.h" | 115 #include "content/browser/plugin_service.h" |
116 #include "content/browser/renderer_host/render_view_host.h" | 116 #include "content/browser/renderer_host/render_view_host.h" |
117 #include "content/browser/tab_contents/interstitial_page.h" | 117 #include "content/browser/tab_contents/interstitial_page.h" |
118 #include "content/public/browser/notification_service.h" | 118 #include "content/public/browser/notification_service.h" |
(...skipping 6311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6430 | 6430 |
6431 Send(reply_message_); | 6431 Send(reply_message_); |
6432 redirect_query_ = 0; | 6432 redirect_query_ = 0; |
6433 reply_message_ = NULL; | 6433 reply_message_ = NULL; |
6434 } | 6434 } |
6435 | 6435 |
6436 void TestingAutomationProvider::OnRemoveProvider() { | 6436 void TestingAutomationProvider::OnRemoveProvider() { |
6437 if (g_browser_process) | 6437 if (g_browser_process) |
6438 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); | 6438 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); |
6439 } | 6439 } |
OLD | NEW |