| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "headless/lib/browser/headless_window_tree_host.h" | 5 #include "headless/lib/browser/headless_window_tree_host.h" |
| 6 | 6 |
| 7 #include "headless/lib/browser/headless_focus_client.h" | 7 #include "headless/lib/browser/headless_focus_client.h" |
| 8 #include "headless/lib/browser/headless_window_parenting_client.h" | 8 #include "headless/lib/browser/headless_window_parenting_client.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/gfx/icc_profile.h" | 10 #include "ui/gfx/icc_profile.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 void HeadlessWindowTreeHost::ReleaseCapture() {} | 73 void HeadlessWindowTreeHost::ReleaseCapture() {} |
| 74 | 74 |
| 75 void HeadlessWindowTreeHost::SetCursorNative(gfx::NativeCursor cursor_type) {} | 75 void HeadlessWindowTreeHost::SetCursorNative(gfx::NativeCursor cursor_type) {} |
| 76 | 76 |
| 77 void HeadlessWindowTreeHost::MoveCursorToScreenLocationInPixels( | 77 void HeadlessWindowTreeHost::MoveCursorToScreenLocationInPixels( |
| 78 const gfx::Point& location) {} | 78 const gfx::Point& location) {} |
| 79 | 79 |
| 80 void HeadlessWindowTreeHost::OnCursorVisibilityChangedNative(bool show) {} | 80 void HeadlessWindowTreeHost::OnCursorVisibilityChangedNative(bool show) {} |
| 81 | 81 |
| 82 gfx::ICCProfile HeadlessWindowTreeHost::GetICCProfileForCurrentDisplay() { | |
| 83 return gfx::ICCProfile(); | |
| 84 } | |
| 85 | |
| 86 } // namespace headless | 82 } // namespace headless |
| OLD | NEW |