| 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 "content/browser/tab_contents/interstitial_page.h" | 5 #include "content/browser/tab_contents/interstitial_page.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
| 14 #include "chrome/browser/browser_list.h" | 14 #include "chrome/browser/browser_list.h" |
| 15 #include "chrome/browser/browser_process.h" | 15 #include "chrome/browser/browser_process.h" |
| 16 #include "chrome/browser/dom_operation_notification_details.h" | 16 #include "chrome/browser/dom_operation_notification_details.h" |
| 17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
| 18 #include "chrome/browser/renderer_preferences_util.h" | 18 #include "chrome/browser/renderer_preferences_util.h" |
| 19 #include "chrome/common/bindings_policy.h" | 19 #include "chrome/common/bindings_policy.h" |
| 20 #include "chrome/common/dom_storage_common.h" | 20 #include "chrome/common/dom_storage_common.h" |
| 21 #include "chrome/common/net/url_request_context_getter.h" | 21 #include "chrome/common/net/url_request_context_getter.h" |
| 22 #include "chrome/common/notification_service.h" | |
| 23 #include "chrome/common/notification_source.h" | |
| 24 #include "content/browser/browser_thread.h" | 22 #include "content/browser/browser_thread.h" |
| 25 #include "content/browser/renderer_host/render_process_host.h" | 23 #include "content/browser/renderer_host/render_process_host.h" |
| 26 #include "content/browser/renderer_host/render_view_host.h" | 24 #include "content/browser/renderer_host/render_view_host.h" |
| 27 #include "content/browser/renderer_host/render_widget_host_view.h" | 25 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 28 #include "content/browser/renderer_host/resource_dispatcher_host.h" | 26 #include "content/browser/renderer_host/resource_dispatcher_host.h" |
| 29 #include "content/browser/site_instance.h" | 27 #include "content/browser/site_instance.h" |
| 30 #include "content/browser/tab_contents/navigation_controller.h" | 28 #include "content/browser/tab_contents/navigation_controller.h" |
| 31 #include "content/browser/tab_contents/navigation_entry.h" | 29 #include "content/browser/tab_contents/navigation_entry.h" |
| 32 #include "content/browser/tab_contents/tab_contents.h" | 30 #include "content/browser/tab_contents/tab_contents.h" |
| 33 #include "content/browser/tab_contents/tab_contents_view.h" | 31 #include "content/browser/tab_contents/tab_contents_view.h" |
| 32 #include "content/common/notification_service.h" |
| 33 #include "content/common/notification_source.h" |
| 34 #include "net/base/escape.h" | 34 #include "net/base/escape.h" |
| 35 | 35 |
| 36 #if defined(TOOLKIT_GTK) | 36 #if defined(TOOLKIT_GTK) |
| 37 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" | 37 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" |
| 38 #endif | 38 #endif |
| 39 | 39 |
| 40 using WebKit::WebDragOperation; | 40 using WebKit::WebDragOperation; |
| 41 using WebKit::WebDragOperationsMask; | 41 using WebKit::WebDragOperationsMask; |
| 42 | 42 |
| 43 namespace { | 43 namespace { |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 | 729 |
| 730 void InterstitialPage::UpdateInspectorSetting(const std::string& key, | 730 void InterstitialPage::UpdateInspectorSetting(const std::string& key, |
| 731 const std::string& value) { | 731 const std::string& value) { |
| 732 RenderViewHostDelegateHelper::UpdateInspectorSetting( | 732 RenderViewHostDelegateHelper::UpdateInspectorSetting( |
| 733 tab_->profile(), key, value); | 733 tab_->profile(), key, value); |
| 734 } | 734 } |
| 735 | 735 |
| 736 void InterstitialPage::ClearInspectorSettings() { | 736 void InterstitialPage::ClearInspectorSettings() { |
| 737 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); | 737 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); |
| 738 } | 738 } |
| OLD | NEW |