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/renderer_host/render_view_host.h" | 5 #include "content/browser/renderer_host/render_view_host.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "content/common/content_constants.h" | 32 #include "content/common/content_constants.h" |
33 #include "content/common/content_notification_types.h" | 33 #include "content/common/content_notification_types.h" |
34 #include "content/common/desktop_notification_messages.h" | 34 #include "content/common/desktop_notification_messages.h" |
35 #include "content/common/drag_messages.h" | 35 #include "content/common/drag_messages.h" |
36 #include "content/common/native_web_keyboard_event.h" | 36 #include "content/common/native_web_keyboard_event.h" |
37 #include "content/common/notification_details.h" | 37 #include "content/common/notification_details.h" |
38 #include "content/common/notification_service.h" | 38 #include "content/common/notification_service.h" |
39 #include "content/common/result_codes.h" | 39 #include "content/common/result_codes.h" |
40 #include "content/common/speech_input_messages.h" | 40 #include "content/common/speech_input_messages.h" |
41 #include "content/common/swapped_out_messages.h" | 41 #include "content/common/swapped_out_messages.h" |
42 #include "content/common/url_constants.h" | |
43 #include "content/common/view_messages.h" | 42 #include "content/common/view_messages.h" |
44 #include "content/public/common/bindings_policy.h" | 43 #include "content/public/common/bindings_policy.h" |
| 44 #include "content/public/common/url_constants.h" |
45 #include "net/base/net_util.h" | 45 #include "net/base/net_util.h" |
46 #include "net/url_request/url_request_context_getter.h" | 46 #include "net/url_request/url_request_context_getter.h" |
47 #include "third_party/skia/include/core/SkBitmap.h" | 47 #include "third_party/skia/include/core/SkBitmap.h" |
48 #include "ui/gfx/native_widget_types.h" | 48 #include "ui/gfx/native_widget_types.h" |
49 #include "webkit/glue/context_menu.h" | 49 #include "webkit/glue/context_menu.h" |
50 #include "webkit/glue/webaccessibility.h" | 50 #include "webkit/glue/webaccessibility.h" |
51 #include "webkit/glue/webdropdata.h" | 51 #include "webkit/glue/webdropdata.h" |
52 | 52 |
53 using base::TimeDelta; | 53 using base::TimeDelta; |
54 using WebKit::WebConsoleMessage; | 54 using WebKit::WebConsoleMessage; |
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1410 void RenderViewHost::OnRunFileChooser( | 1410 void RenderViewHost::OnRunFileChooser( |
1411 const ViewHostMsg_RunFileChooser_Params& params) { | 1411 const ViewHostMsg_RunFileChooser_Params& params) { |
1412 delegate_->RunFileChooser(this, params); | 1412 delegate_->RunFileChooser(this, params); |
1413 } | 1413 } |
1414 | 1414 |
1415 void RenderViewHost::OnWebUISend(const GURL& source_url, | 1415 void RenderViewHost::OnWebUISend(const GURL& source_url, |
1416 const std::string& name, | 1416 const std::string& name, |
1417 const base::ListValue& args) { | 1417 const base::ListValue& args) { |
1418 delegate_->WebUISend(this, source_url, name, args); | 1418 delegate_->WebUISend(this, source_url, name, args); |
1419 } | 1419 } |
OLD | NEW |