| 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/tab_contents.h" | 5 #include "content/browser/tab_contents/tab_contents.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| 11 #include "base/metrics/stats_counters.h" | 11 #include "base/metrics/stats_counters.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
| 14 #include "base/time.h" | 14 #include "base/time.h" |
| 15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
| 16 #include "chrome/browser/debugger/devtools_manager.h" | |
| 17 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 18 #include "content/browser/child_process_security_policy.h" | 17 #include "content/browser/child_process_security_policy.h" |
| 19 #include "content/browser/content_browser_client.h" | 18 #include "content/browser/content_browser_client.h" |
| 19 #include "content/browser/debugger/devtools_manager.h" |
| 20 #include "content/browser/host_zoom_map.h" | 20 #include "content/browser/host_zoom_map.h" |
| 21 #include "content/browser/in_process_webkit/session_storage_namespace.h" | 21 #include "content/browser/in_process_webkit/session_storage_namespace.h" |
| 22 #include "content/browser/load_from_memory_cache_details.h" | 22 #include "content/browser/load_from_memory_cache_details.h" |
| 23 #include "content/browser/load_notification_details.h" | 23 #include "content/browser/load_notification_details.h" |
| 24 #include "content/browser/renderer_host/render_process_host.h" | 24 #include "content/browser/renderer_host/render_process_host.h" |
| 25 #include "content/browser/renderer_host/render_view_host.h" | 25 #include "content/browser/renderer_host/render_view_host.h" |
| 26 #include "content/browser/renderer_host/render_widget_host_view.h" | 26 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 27 #include "content/browser/renderer_host/resource_request_details.h" | 27 #include "content/browser/renderer_host/resource_request_details.h" |
| 28 #include "content/browser/site_instance.h" | 28 #include "content/browser/site_instance.h" |
| 29 #include "content/browser/tab_contents/interstitial_page.h" | 29 #include "content/browser/tab_contents/interstitial_page.h" |
| (...skipping 1805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 | 1835 |
| 1836 void TabContents::CreateViewAndSetSizeForRVH(RenderViewHost* rvh) { | 1836 void TabContents::CreateViewAndSetSizeForRVH(RenderViewHost* rvh) { |
| 1837 RenderWidgetHostView* rwh_view = view()->CreateViewForWidget(rvh); | 1837 RenderWidgetHostView* rwh_view = view()->CreateViewForWidget(rvh); |
| 1838 rwh_view->SetSize(view()->GetContainerSize()); | 1838 rwh_view->SetSize(view()->GetContainerSize()); |
| 1839 } | 1839 } |
| 1840 | 1840 |
| 1841 void TabContents::OnOnlineStateChanged(bool online) { | 1841 void TabContents::OnOnlineStateChanged(bool online) { |
| 1842 render_view_host()->Send(new ViewMsg_NetworkStateChanged( | 1842 render_view_host()->Send(new ViewMsg_NetworkStateChanged( |
| 1843 render_view_host()->routing_id(), online)); | 1843 render_view_host()->routing_id(), online)); |
| 1844 } | 1844 } |
| OLD | NEW |