Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: ui/ozone/platform/wayland/mock_platform_window_delegate.h

Issue 1673063002: ozone/platform/wayland: Add some tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use two WaitableEvents to prevent race, re-arrange some definitions, other minor test robustness fi… Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 {
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
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/fake_server.cc ('k') | ui/ozone/platform/wayland/mock_platform_window_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698