| 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" | |
| 21 #include "chrome/common/net/url_request_context_getter.h" | 20 #include "chrome/common/net/url_request_context_getter.h" |
| 22 #include "chrome/common/page_transition_types.h" | 21 #include "chrome/common/page_transition_types.h" |
| 23 #include "chrome/common/render_messages_params.h" | 22 #include "chrome/common/render_messages_params.h" |
| 24 #include "content/browser/browser_thread.h" | 23 #include "content/browser/browser_thread.h" |
| 25 #include "content/browser/renderer_host/render_process_host.h" | 24 #include "content/browser/renderer_host/render_process_host.h" |
| 26 #include "content/browser/renderer_host/render_view_host.h" | 25 #include "content/browser/renderer_host/render_view_host.h" |
| 27 #include "content/browser/renderer_host/render_widget_host_view.h" | 26 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 28 #include "content/browser/renderer_host/resource_dispatcher_host.h" | 27 #include "content/browser/renderer_host/resource_dispatcher_host.h" |
| 29 #include "content/browser/site_instance.h" | 28 #include "content/browser/site_instance.h" |
| 30 #include "content/browser/tab_contents/navigation_controller.h" | 29 #include "content/browser/tab_contents/navigation_controller.h" |
| 31 #include "content/browser/tab_contents/navigation_entry.h" | 30 #include "content/browser/tab_contents/navigation_entry.h" |
| 32 #include "content/browser/tab_contents/tab_contents.h" | 31 #include "content/browser/tab_contents/tab_contents.h" |
| 33 #include "content/browser/tab_contents/tab_contents_view.h" | 32 #include "content/browser/tab_contents/tab_contents_view.h" |
| 33 #include "content/common/dom_storage_common.h" |
| 34 #include "content/common/notification_service.h" | 34 #include "content/common/notification_service.h" |
| 35 #include "content/common/notification_source.h" | 35 #include "content/common/notification_source.h" |
| 36 #include "net/base/escape.h" | 36 #include "net/base/escape.h" |
| 37 | 37 |
| 38 #if defined(TOOLKIT_GTK) | 38 #if defined(TOOLKIT_GTK) |
| 39 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" | 39 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 using WebKit::WebDragOperation; | 42 using WebKit::WebDragOperation; |
| 43 using WebKit::WebDragOperationsMask; | 43 using WebKit::WebDragOperationsMask; |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 | 735 |
| 736 void InterstitialPage::UpdateInspectorSetting(const std::string& key, | 736 void InterstitialPage::UpdateInspectorSetting(const std::string& key, |
| 737 const std::string& value) { | 737 const std::string& value) { |
| 738 RenderViewHostDelegateHelper::UpdateInspectorSetting( | 738 RenderViewHostDelegateHelper::UpdateInspectorSetting( |
| 739 tab_->profile(), key, value); | 739 tab_->profile(), key, value); |
| 740 } | 740 } |
| 741 | 741 |
| 742 void InterstitialPage::ClearInspectorSettings() { | 742 void InterstitialPage::ClearInspectorSettings() { |
| 743 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); | 743 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); |
| 744 } | 744 } |
| OLD | NEW |