| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_impl.h" | 5 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 #include "content/public/browser/notification_types.h" | 67 #include "content/public/browser/notification_types.h" |
| 68 #include "content/public/browser/render_frame_host.h" | 68 #include "content/public/browser/render_frame_host.h" |
| 69 #include "content/public/browser/render_widget_host_iterator.h" | 69 #include "content/public/browser/render_widget_host_iterator.h" |
| 70 #include "content/public/browser/storage_partition.h" | 70 #include "content/public/browser/storage_partition.h" |
| 71 #include "content/public/browser/user_metrics.h" | 71 #include "content/public/browser/user_metrics.h" |
| 72 #include "content/public/common/bindings_policy.h" | 72 #include "content/public/common/bindings_policy.h" |
| 73 #include "content/public/common/content_constants.h" | 73 #include "content/public/common/content_constants.h" |
| 74 #include "content/public/common/content_features.h" | 74 #include "content/public/common/content_features.h" |
| 75 #include "content/public/common/content_switches.h" | 75 #include "content/public/common/content_switches.h" |
| 76 #include "content/public/common/context_menu_params.h" | 76 #include "content/public/common/context_menu_params.h" |
| 77 #include "content/public/common/drop_data.h" | |
| 78 #include "content/public/common/file_chooser_file_info.h" | 77 #include "content/public/common/file_chooser_file_info.h" |
| 79 #include "content/public/common/file_chooser_params.h" | 78 #include "content/public/common/file_chooser_params.h" |
| 80 #include "content/public/common/result_codes.h" | 79 #include "content/public/common/result_codes.h" |
| 81 #include "content/public/common/url_constants.h" | 80 #include "content/public/common/url_constants.h" |
| 82 #include "content/public/common/url_utils.h" | 81 #include "content/public/common/url_utils.h" |
| 83 #include "net/base/url_util.h" | 82 #include "net/base/url_util.h" |
| 84 #include "net/url_request/url_request_context_getter.h" | 83 #include "net/url_request/url_request_context_getter.h" |
| 85 #include "third_party/skia/include/core/SkBitmap.h" | 84 #include "third_party/skia/include/core/SkBitmap.h" |
| 86 #include "ui/base/clipboard/clipboard.h" | 85 #include "ui/base/clipboard/clipboard.h" |
| 87 #include "ui/base/touch/touch_device.h" | 86 #include "ui/base/touch/touch_device.h" |
| (...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 } else { | 1072 } else { |
| 1074 render_view_ready_on_process_launch_ = true; | 1073 render_view_ready_on_process_launch_ = true; |
| 1075 } | 1074 } |
| 1076 } | 1075 } |
| 1077 | 1076 |
| 1078 void RenderViewHostImpl::RenderViewReady() { | 1077 void RenderViewHostImpl::RenderViewReady() { |
| 1079 delegate_->RenderViewReady(this); | 1078 delegate_->RenderViewReady(this); |
| 1080 } | 1079 } |
| 1081 | 1080 |
| 1082 } // namespace content | 1081 } // namespace content |
| OLD | NEW |