OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/web_contents/web_contents_view_mus.h" | 5 #include "content/browser/web_contents/web_contents_view_mus.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "components/mus/public/cpp/window.h" | |
9 #include "components/mus/public/cpp/window_tree_client.h" | |
10 #include "content/browser/frame_host/interstitial_page_impl.h" | 8 #include "content/browser/frame_host/interstitial_page_impl.h" |
11 #include "content/browser/renderer_host/render_widget_host_view_mus.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_mus.h" |
12 #include "content/browser/web_contents/web_contents_impl.h" | 10 #include "content/browser/web_contents/web_contents_impl.h" |
13 #include "content/public/browser/render_widget_host_view.h" | 11 #include "content/public/browser/render_widget_host_view.h" |
14 #include "content/public/browser/web_contents_view_delegate.h" | 12 #include "content/public/browser/web_contents_view_delegate.h" |
| 13 #include "services/ui/public/cpp/window.h" |
| 14 #include "services/ui/public/cpp/window_tree_client.h" |
15 #include "third_party/WebKit/public/platform/WebDragOperation.h" | 15 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
16 #include "ui/aura/client/window_tree_client.h" | 16 #include "ui/aura/client/window_tree_client.h" |
17 #include "ui/aura/window.h" | 17 #include "ui/aura/window.h" |
18 #include "ui/base/hit_test.h" | 18 #include "ui/base/hit_test.h" |
19 | 19 |
20 using blink::WebDragOperation; | 20 using blink::WebDragOperation; |
21 using blink::WebDragOperationsMask; | 21 using blink::WebDragOperationsMask; |
22 | 22 |
23 namespace content { | 23 namespace content { |
24 | 24 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 | 256 |
257 void WebContentsViewMus::OnWindowTargetVisibilityChanged(bool visible) {} | 257 void WebContentsViewMus::OnWindowTargetVisibilityChanged(bool visible) {} |
258 | 258 |
259 bool WebContentsViewMus::HasHitTestMask() const { | 259 bool WebContentsViewMus::HasHitTestMask() const { |
260 return false; | 260 return false; |
261 } | 261 } |
262 | 262 |
263 void WebContentsViewMus::GetHitTestMask(gfx::Path* mask) const {} | 263 void WebContentsViewMus::GetHitTestMask(gfx::Path* mask) const {} |
264 | 264 |
265 } // namespace content | 265 } // namespace content |
OLD | NEW |