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

Unified Diff: ui/views/test/test_platform_native_widget.h

Issue 2488393003: Changes views_aura_mus_unittests to create DesktopNativeWidgetAura (Closed)
Patch Set: remove this and fix mac Created 4 years, 1 month 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
« no previous file with comments | « ui/views/test/scoped_views_test_helper.h ('k') | ui/views/test/test_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/test/test_platform_native_widget.h
diff --git a/ui/views/test/test_platform_native_widget.h b/ui/views/test/test_platform_native_widget.h
new file mode 100644
index 0000000000000000000000000000000000000000..257ee71081c55d73a92dffdaeb84844ad5a946d5
--- /dev/null
+++ b/ui/views/test/test_platform_native_widget.h
@@ -0,0 +1,73 @@
+// 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.
+
+#ifndef UI_VIEWS_TEST_TEST_PLATFORM_NATIVE_WIDGET_H_
+#define UI_VIEWS_TEST_TEST_PLATFORM_NATIVE_WIDGET_H_
+
+#include "base/compiler_specific.h"
+#include "base/macros.h"
+#include "ui/views/view.h"
+
+namespace views {
+namespace internal {
+class NativeWidgetDelegate;
+}
+namespace test {
+
+// NativeWidget implementation that adds the following:
+// . capture can be mocked.
+// . a boolean is set when the NativeWidget is destroyed.
+// Don't create directly, instead go through functions in
+// native_widget_factory.h that create the appropriate platform specific
+// implementation.
+template <typename PlatformNativeWidget>
+class TestPlatformNativeWidget : public PlatformNativeWidget {
+ public:
+ TestPlatformNativeWidget(internal::NativeWidgetDelegate* delegate,
+ bool mock_capture,
+ bool* destroyed)
+ : PlatformNativeWidget(delegate),
+ mouse_capture_(false),
+ mock_capture_(mock_capture),
+ destroyed_(destroyed) {}
+
+ ~TestPlatformNativeWidget() override {
+ if (destroyed_)
+ *destroyed_ = true;
+ }
+
+ // PlatformNativeWidget:
+ void SetCapture() override {
+ if (mock_capture_)
+ mouse_capture_ = true;
+ else
+ PlatformNativeWidget::SetCapture();
+ }
+
+ void ReleaseCapture() override {
+ if (mock_capture_) {
+ if (mouse_capture_)
+ PlatformNativeWidget::GetWidget()->OnMouseCaptureLost();
+ mouse_capture_ = false;
+ } else {
+ PlatformNativeWidget::ReleaseCapture();
+ }
+ }
+
+ bool HasCapture() const override {
+ return mock_capture_ ? mouse_capture_ : PlatformNativeWidget::HasCapture();
+ }
+
+ private:
+ bool mouse_capture_;
+ const bool mock_capture_;
+ bool* destroyed_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestPlatformNativeWidget);
+};
+
+} // namespace test
+} // namespace views
+
+#endif // UI_VIEWS_TEST_TEST_PLATFORM_NATIVE_WIDGET_H_
« no previous file with comments | « ui/views/test/scoped_views_test_helper.h ('k') | ui/views/test/test_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698