| 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/headless/headless_window.h" | 5 #include "ui/ozone/platform/headless/headless_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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 void HeadlessWindow::SetTitle(const base::string16& title) {} | 47 void HeadlessWindow::SetTitle(const base::string16& title) {} |
| 48 | 48 |
| 49 void HeadlessWindow::Show() {} | 49 void HeadlessWindow::Show() {} |
| 50 | 50 |
| 51 void HeadlessWindow::Hide() {} | 51 void HeadlessWindow::Hide() {} |
| 52 | 52 |
| 53 void HeadlessWindow::Close() {} | 53 void HeadlessWindow::Close() {} |
| 54 | 54 |
| 55 void HeadlessWindow::PrepareForShutdown() {} |
| 56 |
| 55 void HeadlessWindow::SetCapture() {} | 57 void HeadlessWindow::SetCapture() {} |
| 56 | 58 |
| 57 void HeadlessWindow::ReleaseCapture() {} | 59 void HeadlessWindow::ReleaseCapture() {} |
| 58 | 60 |
| 59 void HeadlessWindow::ToggleFullscreen() {} | 61 void HeadlessWindow::ToggleFullscreen() {} |
| 60 | 62 |
| 61 void HeadlessWindow::Maximize() {} | 63 void HeadlessWindow::Maximize() {} |
| 62 | 64 |
| 63 void HeadlessWindow::Minimize() {} | 65 void HeadlessWindow::Minimize() {} |
| 64 | 66 |
| 65 void HeadlessWindow::Restore() {} | 67 void HeadlessWindow::Restore() {} |
| 66 | 68 |
| 67 void HeadlessWindow::SetCursor(PlatformCursor cursor) {} | 69 void HeadlessWindow::SetCursor(PlatformCursor cursor) {} |
| 68 | 70 |
| 69 void HeadlessWindow::MoveCursorTo(const gfx::Point& location) {} | 71 void HeadlessWindow::MoveCursorTo(const gfx::Point& location) {} |
| 70 | 72 |
| 71 void HeadlessWindow::ConfineCursorToBounds(const gfx::Rect& bounds) {} | 73 void HeadlessWindow::ConfineCursorToBounds(const gfx::Rect& bounds) {} |
| 72 | 74 |
| 73 PlatformImeController* HeadlessWindow::GetPlatformImeController() { | 75 PlatformImeController* HeadlessWindow::GetPlatformImeController() { |
| 74 return nullptr; | 76 return nullptr; |
| 75 } | 77 } |
| 76 | 78 |
| 77 } // namespace ui | 79 } // namespace ui |
| OLD | NEW |