| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 #include "chrome/common/extensions/url_pattern.h" | 108 #include "chrome/common/extensions/url_pattern.h" |
| 109 #include "chrome/common/extensions/url_pattern_set.h" | 109 #include "chrome/common/extensions/url_pattern_set.h" |
| 110 #include "chrome/common/pref_names.h" | 110 #include "chrome/common/pref_names.h" |
| 111 #include "chrome/common/render_messages.h" | 111 #include "chrome/common/render_messages.h" |
| 112 #include "chrome/common/url_constants.h" | 112 #include "chrome/common/url_constants.h" |
| 113 #include "chrome/common/chrome_view_types.h" | 113 #include "chrome/common/chrome_view_types.h" |
| 114 #include "content/browser/plugin_service.h" | 114 #include "content/browser/plugin_service.h" |
| 115 #include "content/browser/renderer_host/render_process_host.h" | 115 #include "content/browser/renderer_host/render_process_host.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/common/common_param_traits.h" | |
| 119 #include "content/public/browser/notification_service.h" | 118 #include "content/public/browser/notification_service.h" |
| 119 #include "content/public/common/common_param_traits.h" |
| 120 #include "net/base/cookie_store.h" | 120 #include "net/base/cookie_store.h" |
| 121 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 121 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
| 122 #include "ui/base/events.h" | 122 #include "ui/base/events.h" |
| 123 #include "ui/base/keycodes/keyboard_codes.h" | 123 #include "ui/base/keycodes/keyboard_codes.h" |
| 124 #include "ui/base/message_box_flags.h" | 124 #include "ui/base/message_box_flags.h" |
| 125 #include "webkit/glue/webdropdata.h" | 125 #include "webkit/glue/webdropdata.h" |
| 126 #include "webkit/plugins/webplugininfo.h" | 126 #include "webkit/plugins/webplugininfo.h" |
| 127 | 127 |
| 128 #if defined(ENABLE_CONFIGURATION_POLICY) | 128 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 129 #include "chrome/browser/policy/browser_policy_connector.h" | 129 #include "chrome/browser/policy/browser_policy_connector.h" |
| (...skipping 6397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6527 | 6527 |
| 6528 Send(reply_message_); | 6528 Send(reply_message_); |
| 6529 redirect_query_ = 0; | 6529 redirect_query_ = 0; |
| 6530 reply_message_ = NULL; | 6530 reply_message_ = NULL; |
| 6531 } | 6531 } |
| 6532 | 6532 |
| 6533 void TestingAutomationProvider::OnRemoveProvider() { | 6533 void TestingAutomationProvider::OnRemoveProvider() { |
| 6534 if (g_browser_process) | 6534 if (g_browser_process) |
| 6535 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); | 6535 g_browser_process->GetAutomationProviderList()->RemoveProvider(this); |
| 6536 } | 6536 } |
| OLD | NEW |