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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: ui/ozone/platform/wayland/mock_platform_window_delegate.h
diff --git a/ui/ozone/platform/wayland/mock_platform_window_delegate.h b/ui/ozone/platform/wayland/mock_platform_window_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..7b8967dfa809c932a0db1e2e8580342027dc20d7
--- /dev/null
+++ b/ui/ozone/platform/wayland/mock_platform_window_delegate.h
@@ -0,0 +1,32 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/platform_window/platform_window_delegate.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "ui/gfx/geometry/rect.h"
+
+namespace ui {
+
+class MockPlatformWindowDelegate : public PlatformWindowDelegate {
+ public:
+ MockPlatformWindowDelegate();
+ ~MockPlatformWindowDelegate();
+
+ MOCK_METHOD1(OnBoundsChanged, void(const gfx::Rect& new_bounds));
+ MOCK_METHOD1(OnDamageRect, void(const gfx::Rect& damaged_region));
+ MOCK_METHOD1(DispatchEvent, void(Event* event));
+ MOCK_METHOD0(OnCloseRequest, void());
+ MOCK_METHOD0(OnClosed, void());
+ MOCK_METHOD1(OnWindowStateChanged, void(PlatformWindowState new_state));
+ MOCK_METHOD0(OnLostCapture, void());
+ MOCK_METHOD2(OnAcceleratedWidgetAvailable,
+ void(gfx::AcceleratedWidget widget, float device_pixel_ratio));
+ MOCK_METHOD0(OnAcceleratedWidgetDestroyed, void());
+ MOCK_METHOD1(OnActivationChanged, void(bool active));
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MockPlatformWindowDelegate);
+};
+
+} // namespace ui
« 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