OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/services/native_viewport/native_viewport.h" | 5 #include "mojo/services/native_viewport/native_viewport.h" |
6 | 6 |
7 // Stub to build on platforms we don't fully support yet. | 7 // Stub to build on platforms we don't fully support yet. |
8 | 8 |
9 namespace mojo { | 9 namespace mojo { |
10 namespace services { | 10 namespace services { |
11 | 11 |
12 class NativeViewportStub : public NativeViewport { | 12 class NativeViewportStub : public NativeViewport { |
13 public: | 13 public: |
14 NativeViewportStub(NativeViewportDelegate* delegate) | 14 NativeViewportStub(NativeViewportDelegate* delegate) |
15 : delegate_(delegate) { | 15 : NativeViewport(delegate) { |
16 } | 16 } |
17 virtual ~NativeViewportStub() { | 17 virtual ~NativeViewportStub() { |
18 } | 18 } |
19 | 19 |
20 private: | 20 private: |
21 // Overridden from NativeViewport: | 21 // Overridden from NativeViewport: |
22 virtual void Close() OVERRIDE { | 22 virtual void Close() OVERRIDE { |
23 delegate_->OnDestroyed(); | 23 delegate_->OnDestroyed(); |
24 } | 24 } |
25 | 25 |
26 NativeViewportDelegate* delegate_; | |
27 | |
28 DISALLOW_COPY_AND_ASSIGN(NativeViewportStub); | 26 DISALLOW_COPY_AND_ASSIGN(NativeViewportStub); |
29 }; | 27 }; |
30 | 28 |
31 // static | 29 // static |
32 scoped_ptr<NativeViewport> NativeViewport::Create( | 30 scoped_ptr<NativeViewport> NativeViewport::Create( |
33 shell::Context* context, | 31 shell::Context* context, |
34 NativeViewportDelegate* delegate) { | 32 NativeViewportDelegate* delegate) { |
35 return scoped_ptr<NativeViewport>(new NativeViewportStub(delegate)).Pass(); | 33 return scoped_ptr<NativeViewport>(new NativeViewportStub(delegate)).Pass(); |
36 } | 34 } |
37 | 35 |
38 } // namespace services | 36 } // namespace services |
39 } // namespace mojo | 37 } // namespace mojo |
OLD | NEW |