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

Unified Diff: wm/host/foreign_test_window_host.cc

Issue 11485006: Add window manager component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address more review feedback Created 7 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: wm/host/foreign_test_window_host.cc
diff --git a/wm/host/foreign_test_window_host.cc b/wm/host/foreign_test_window_host.cc
new file mode 100644
index 0000000000000000000000000000000000000000..52a9be64cef4026494862aa0a9c8194e298c528a
--- /dev/null
+++ b/wm/host/foreign_test_window_host.cc
@@ -0,0 +1,38 @@
+// Copyright (c) 2013 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 "wm/host/foreign_test_window_host.h"
+
+#include "base/compiler_specific.h"
+
+namespace wm {
+
+namespace {
+
+class ForeignTestWindowHostImpl : public ForeignTestWindowHost {
+ public:
+ ForeignTestWindowHostImpl() {}
+
+ // Overridden from wm::ForeignTestWindowHost:
+ virtual void Initialize() OVERRIDE {}
+ virtual void Delete() OVERRIDE { delete this; }
+ virtual void Show() OVERRIDE {}
+ virtual void Hide() OVERRIDE {}
+ virtual void Destroy() OVERRIDE {}
+ virtual void Sync() OVERRIDE {}
+};
+
+} // namespace
+
+// static
+ForeignTestWindowHost* ForeignTestWindowHost::Create(
+ gfx::AcceleratedWidget parent) {
+ return new ForeignTestWindowHostImpl();
+}
+
+// static
+void ForeignTestWindowHost::RunAllPendingInMessageLoop() {
+}
+
+} // namespace wm

Powered by Google App Engine
This is Rietveld 408576698