summaryrefslogtreecommitdiffstats
path: root/chromium/mojo/services/native_viewport/native_viewport_stub.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/services/native_viewport/native_viewport_stub.cc')
-rw-r--r--chromium/mojo/services/native_viewport/native_viewport_stub.cc50
1 files changed, 50 insertions, 0 deletions
diff --git a/chromium/mojo/services/native_viewport/native_viewport_stub.cc b/chromium/mojo/services/native_viewport/native_viewport_stub.cc
new file mode 100644
index 00000000000..9dcb33a8806
--- /dev/null
+++ b/chromium/mojo/services/native_viewport/native_viewport_stub.cc
@@ -0,0 +1,50 @@
+// Copyright 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 "mojo/services/native_viewport/native_viewport.h"
+
+// Stub to build on platforms we don't fully support yet.
+
+namespace mojo {
+namespace services {
+
+class NativeViewportStub : public NativeViewport {
+ public:
+ NativeViewportStub(NativeViewportDelegate* delegate)
+ : delegate_(delegate) {
+ }
+ virtual ~NativeViewportStub() {
+ }
+
+ private:
+ // Overridden from NativeViewport:
+ virtual void Init() OVERRIDE {
+ }
+ virtual void Show() OVERRIDE {
+ }
+ virtual void Hide() OVERRIDE {
+ }
+ virtual void Close() OVERRIDE {
+ delegate_->OnDestroyed();
+ }
+ virtual gfx::Size GetSize() OVERRIDE {
+ return gfx::Size();
+ }
+ virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE {
+ }
+
+ NativeViewportDelegate* delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(NativeViewportStub);
+};
+
+// static
+scoped_ptr<NativeViewport> NativeViewport::Create(
+ shell::Context* context,
+ NativeViewportDelegate* delegate) {
+ return scoped_ptr<NativeViewport>(new NativeViewportStub(delegate)).Pass();
+}
+
+} // namespace services
+} // namespace mojo