| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ui/ozone/platform/test/test_window.h" | 5 #include "ui/ozone/platform/test/test_window.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 void TestWindow::Restore() { | 71 void TestWindow::Restore() { |
| 72 } | 72 } |
| 73 | 73 |
| 74 void TestWindow::SetCursor(PlatformCursor cursor) { | 74 void TestWindow::SetCursor(PlatformCursor cursor) { |
| 75 } | 75 } |
| 76 | 76 |
| 77 void TestWindow::MoveCursorTo(const gfx::Point& location) { | 77 void TestWindow::MoveCursorTo(const gfx::Point& location) { |
| 78 } | 78 } |
| 79 | 79 |
| 80 void TestWindow::ConfineCursorToBounds(const gfx::Rect& bounds) { |
| 81 } |
| 82 |
| 80 } // namespace ui | 83 } // namespace ui |
| OLD | NEW |