OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/renderer_host/render_view_host.h" | 5 #include "chrome/browser/renderer_host/render_view_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
| 10 #include "app/gfx/native_widget_types.h" |
10 #include "app/l10n_util.h" | 11 #include "app/l10n_util.h" |
11 #include "app/resource_bundle.h" | 12 #include "app/resource_bundle.h" |
12 #include "base/gfx/native_widget_types.h" | |
13 #include "base/json_reader.h" | 13 #include "base/json_reader.h" |
14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "base/waitable_event.h" | 16 #include "base/waitable_event.h" |
17 #include "chrome/browser/child_process_security_policy.h" | 17 #include "chrome/browser/child_process_security_policy.h" |
18 #include "chrome/browser/cross_site_request_manager.h" | 18 #include "chrome/browser/cross_site_request_manager.h" |
19 #include "chrome/browser/debugger/devtools_manager.h" | 19 #include "chrome/browser/debugger/devtools_manager.h" |
20 #include "chrome/browser/dom_operation_notification_details.h" | 20 #include "chrome/browser/dom_operation_notification_details.h" |
21 #include "chrome/browser/extensions/extension_message_service.h" | 21 #include "chrome/browser/extensions/extension_message_service.h" |
22 #include "chrome/browser/metrics/user_metrics.h" | 22 #include "chrome/browser/metrics/user_metrics.h" |
(...skipping 1678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1701 #endif | 1701 #endif |
1702 } | 1702 } |
1703 | 1703 |
1704 void RenderViewHost::OnCSSInserted() { | 1704 void RenderViewHost::OnCSSInserted() { |
1705 delegate_->DidInsertCSS(); | 1705 delegate_->DidInsertCSS(); |
1706 } | 1706 } |
1707 | 1707 |
1708 void RenderViewHost::UpdateBrowserWindowId(int window_id) { | 1708 void RenderViewHost::UpdateBrowserWindowId(int window_id) { |
1709 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); | 1709 Send(new ViewMsg_UpdateBrowserWindowId(routing_id(), window_id)); |
1710 } | 1710 } |
OLD | NEW |