| 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 "blimp/client/app/linux/blimp_display_manager.h" | 5 #include "blimp/client/app/linux/blimp_display_manager.h" |
| 6 | 6 |
| 7 #include "blimp/client/core/contents/tab_control_feature.h" |
| 7 #include "blimp/client/feature/render_widget_feature.h" | 8 #include "blimp/client/feature/render_widget_feature.h" |
| 8 #include "blimp/client/feature/tab_control_feature.h" | |
| 9 #include "ui/events/event.h" | 9 #include "ui/events/event.h" |
| 10 #include "ui/gfx/geometry/size.h" | 10 #include "ui/gfx/geometry/size.h" |
| 11 #include "ui/platform_window/platform_window.h" | 11 #include "ui/platform_window/platform_window.h" |
| 12 #include "ui/platform_window/x11/x11_window.h" | 12 #include "ui/platform_window/x11/x11_window.h" |
| 13 | 13 |
| 14 namespace blimp { | 14 namespace blimp { |
| 15 namespace client { | 15 namespace client { |
| 16 | 16 |
| 17 BlimpDisplayManager::BlimpDisplayManager( | 17 BlimpDisplayManager::BlimpDisplayManager( |
| 18 const gfx::Size& window_size, | 18 const gfx::Size& window_size, |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 } | 77 } |
| 78 | 78 |
| 79 void BlimpDisplayManager::OnActivationChanged(bool active) {} | 79 void BlimpDisplayManager::OnActivationChanged(bool active) {} |
| 80 | 80 |
| 81 void BlimpDisplayManager::OnSwapBuffersCompleted() {} | 81 void BlimpDisplayManager::OnSwapBuffersCompleted() {} |
| 82 | 82 |
| 83 void BlimpDisplayManager::DidCommitAndDrawFrame() {} | 83 void BlimpDisplayManager::DidCommitAndDrawFrame() {} |
| 84 | 84 |
| 85 } // namespace client | 85 } // namespace client |
| 86 } // namespace blimp | 86 } // namespace blimp |
| OLD | NEW |