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

Unified Diff: ui/views/controls/native/native_view_host_test_base.cc

Issue 530933002: MacViews: Implement NativeViewHostMac (take 3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: acceptsFirstResponder, cleanup strays Created 6 years, 3 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/views/controls/native/native_view_host_test_base.cc
diff --git a/ui/views/controls/native/native_view_host_test_base.cc b/ui/views/controls/native/native_view_host_test_base.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f8f957c6cf825afedcde33d883ec63ccd79f3e12
--- /dev/null
+++ b/ui/views/controls/native/native_view_host_test_base.cc
@@ -0,0 +1,80 @@
+// Copyright 2014 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/views/controls/native/native_view_host_test_base.h"
+
+#include "ui/views/controls/native/native_view_host.h"
+#include "ui/views/widget/widget.h"
+
+namespace views {
+namespace test {
+
+// Testing wrapper of the NativeViewHost.
+class NativeViewHostTestBase::NativeViewHostTesting : public NativeViewHost {
+ public:
+ explicit NativeViewHostTesting(NativeViewHostTestBase* owner)
+ : owner_(owner) {}
+ virtual ~NativeViewHostTesting() { owner_->host_destroyed_count_++; }
+
+ private:
+ NativeViewHostTestBase* owner_;
+
+ DISALLOW_COPY_AND_ASSIGN(NativeViewHostTesting);
+};
+
+NativeViewHostTestBase::NativeViewHostTestBase() : host_destroyed_count_(0) {
+}
+
+NativeViewHostTestBase::~NativeViewHostTestBase() {
+}
+
+void NativeViewHostTestBase::CreateTopLevel() {
+ toplevel_.reset(new Widget);
+ Widget::InitParams toplevel_params =
+ CreateParams(Widget::InitParams::TYPE_WINDOW);
+ toplevel_params.ownership = Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
+ toplevel_->Init(toplevel_params);
+}
+
+void NativeViewHostTestBase::CreateTestingHost() {
+ host_.reset(new NativeViewHostTesting(this));
+}
+
+Widget* NativeViewHostTestBase::CreateChildForHost(
+ gfx::NativeView native_parent_view,
+ View* parent_view,
+ View* contents_view,
+ NativeViewHost* host) {
+ Widget* child = new Widget;
+ Widget::InitParams child_params(Widget::InitParams::TYPE_CONTROL);
+ child_params.ownership = Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
+ child_params.parent = native_parent_view;
+ child->Init(child_params);
+ child->SetContentsView(contents_view);
+
+ // Owned by |parent_view|.
+ parent_view->AddChildView(host);
+ host->Attach(child->GetNativeView());
+
+ return child;
+}
+
+void NativeViewHostTestBase::DestroyTopLevel() {
+ toplevel_.reset();
+}
+
+void NativeViewHostTestBase::DestroyHost() {
+ host_.reset();
+}
+
+NativeViewHost* NativeViewHostTestBase::ReleaseHost() {
+ return host_.release();
+}
+
+NativeViewHostWrapper* NativeViewHostTestBase::GetNativeWrapper() {
+ return host_->native_wrapper_.get();
+}
+
+} // namespace test
+} // namespace views
« no previous file with comments | « ui/views/controls/native/native_view_host_test_base.h ('k') | ui/views/controls/native/native_view_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698