Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ui/platform_window/platform_window_delegate.h" | |
| 6 #include "testing/gmock/include/gmock/gmock.h" | |
| 7 #include "ui/gfx/geometry/rect.h" | |
| 8 | |
| 9 namespace ui { | |
| 10 | |
| 11 class MockPlatformWindowDelegate : public PlatformWindowDelegate { | |
|
Michael Forney
2016/02/08 22:45:48
Should I add move this to ui/platform_window in a
rjkroege
2016/02/09 01:30:40
No.
Michael Forney
2016/02/10 02:01:00
Okay.
| |
| 12 public: | |
| 13 MockPlatformWindowDelegate(); | |
| 14 ~MockPlatformWindowDelegate(); | |
| 15 | |
| 16 MOCK_METHOD1(OnBoundsChanged, void(const gfx::Rect& new_bounds)); | |
| 17 MOCK_METHOD1(OnDamageRect, void(const gfx::Rect& damaged_region)); | |
| 18 MOCK_METHOD1(DispatchEvent, void(Event* event)); | |
| 19 MOCK_METHOD0(OnCloseRequest, void()); | |
| 20 MOCK_METHOD0(OnClosed, void()); | |
| 21 MOCK_METHOD1(OnWindowStateChanged, void(PlatformWindowState new_state)); | |
| 22 MOCK_METHOD0(OnLostCapture, void()); | |
| 23 MOCK_METHOD2(OnAcceleratedWidgetAvailable, | |
| 24 void(gfx::AcceleratedWidget widget, float device_pixel_ratio)); | |
| 25 MOCK_METHOD0(OnAcceleratedWidgetDestroyed, void()); | |
| 26 MOCK_METHOD1(OnActivationChanged, void(bool active)); | |
| 27 | |
| 28 private: | |
| 29 DISALLOW_COPY_AND_ASSIGN(MockPlatformWindowDelegate); | |
| 30 }; | |
| 31 | |
| 32 } // namespace ui | |
| OLD | NEW |