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

Side by Side Diff: mojo/services/native_viewport/native_viewport_stub.cc

Issue 51373002: NativeViewport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nl Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mojo/services/native_viewport/native_viewport.h"
6
7 // Stub to build on platforms we don't fully support yet.
8
9 namespace mojo {
10 namespace services {
11
12 class NativeViewportStub : public NativeViewport {
13 public:
14 NativeViewportStub(NativeViewportDelegate* delegate)
15 : delegate_(delegate) {
16 }
17 virtual ~NativeViewportStub() {
18 }
19
20 private:
21 // Overridden from NativeViewport:
22 virtual void Close() OVERRIDE {
23 delegate_->OnDestroyed();
24 }
25
26 NativeViewportDelegate* delegate_;
27
28 DISALLOW_COPY_AND_ASSIGN(NativeViewportStub);
29 };
30
31 // static
32 scoped_ptr<NativeViewport> NativeViewport::Create(
33 NativeViewportDelegate* delegate) {
34 return scoped_ptr<NativeViewport>(new NativeViewportStub(delegate)).Pass();
35 }
36
37 } // namespace services
38 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/services/native_viewport/native_viewport_controller.cc ('k') | mojo/services/native_viewport/native_viewport_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698