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/common/content_constants.h" | 67 #include "content/public/common/content_constants.h" |
68 #include "content/public/common/content_switches.h" | 68 #include "content/public/common/content_switches.h" |
69 #include "content/public/common/context_menu_params.h" | 69 #include "content/public/common/context_menu_params.h" |
70 #include "content/public/common/drop_data.h" | 70 #include "content/public/common/drop_data.h" |
71 #include "content/public/common/result_codes.h" | 71 #include "content/public/common/result_codes.h" |
72 #include "content/public/common/url_utils.h" | 72 #include "content/public/common/url_utils.h" |
73 #include "net/base/filename_util.h" | 73 #include "net/base/filename_util.h" |
74 #include "net/base/net_util.h" | 74 #include "net/base/net_util.h" |
75 #include "net/base/network_change_notifier.h" | 75 #include "net/base/network_change_notifier.h" |
76 #include "net/url_request/url_request_context_getter.h" | 76 #include "net/url_request/url_request_context_getter.h" |
| 77 #include "storage/browser/fileapi/isolated_context.h" |
77 #include "third_party/skia/include/core/SkBitmap.h" | 78 #include "third_party/skia/include/core/SkBitmap.h" |
78 #include "ui/base/touch/touch_device.h" | 79 #include "ui/base/touch/touch_device.h" |
79 #include "ui/base/touch/touch_enabled.h" | 80 #include "ui/base/touch/touch_enabled.h" |
80 #include "ui/base/ui_base_switches.h" | 81 #include "ui/base/ui_base_switches.h" |
81 #include "ui/gfx/image/image_skia.h" | 82 #include "ui/gfx/image/image_skia.h" |
82 #include "ui/gfx/native_widget_types.h" | 83 #include "ui/gfx/native_widget_types.h" |
83 #include "ui/native_theme/native_theme_switches.h" | 84 #include "ui/native_theme/native_theme_switches.h" |
84 #include "ui/shell_dialogs/selected_file_info.h" | 85 #include "ui/shell_dialogs/selected_file_info.h" |
85 #include "url/url_constants.h" | 86 #include "url/url_constants.h" |
86 #include "webkit/browser/fileapi/isolated_context.h" | |
87 | 87 |
88 #if defined(OS_WIN) | 88 #if defined(OS_WIN) |
89 #include "base/win/win_util.h" | 89 #include "base/win/win_util.h" |
90 #endif | 90 #endif |
91 | 91 |
92 #if defined(ENABLE_BROWSER_CDMS) | 92 #if defined(ENABLE_BROWSER_CDMS) |
93 #include "content/browser/media/media_web_contents_observer.h" | 93 #include "content/browser/media/media_web_contents_observer.h" |
94 #endif | 94 #endif |
95 | 95 |
96 using base::TimeDelta; | 96 using base::TimeDelta; |
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1527 FrameTree* frame_tree = delegate_->GetFrameTree(); | 1527 FrameTree* frame_tree = delegate_->GetFrameTree(); |
1528 | 1528 |
1529 frame_tree->ResetForMainFrameSwap(); | 1529 frame_tree->ResetForMainFrameSwap(); |
1530 } | 1530 } |
1531 | 1531 |
1532 void RenderViewHostImpl::SelectWordAroundCaret() { | 1532 void RenderViewHostImpl::SelectWordAroundCaret() { |
1533 Send(new ViewMsg_SelectWordAroundCaret(GetRoutingID())); | 1533 Send(new ViewMsg_SelectWordAroundCaret(GetRoutingID())); |
1534 } | 1534 } |
1535 | 1535 |
1536 } // namespace content | 1536 } // namespace content |
OLD | NEW |