OLD | NEW |
(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/platform_viewport.h" |
| 6 #include "ui/gfx/rect.h" |
| 7 |
| 8 namespace mojo { |
| 9 |
| 10 class PlatformViewportHeadless : public PlatformViewport { |
| 11 public: |
| 12 virtual ~PlatformViewportHeadless(); |
| 13 |
| 14 static scoped_ptr<PlatformViewport> Create(Delegate* delegate); |
| 15 |
| 16 private: |
| 17 explicit PlatformViewportHeadless(Delegate* delegate); |
| 18 |
| 19 // Overridden from PlatformViewport: |
| 20 virtual void Init(const gfx::Rect& bounds) OVERRIDE; |
| 21 virtual void Show() OVERRIDE; |
| 22 virtual void Hide() OVERRIDE; |
| 23 virtual void Close() OVERRIDE; |
| 24 virtual gfx::Size GetSize() OVERRIDE; |
| 25 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 26 virtual void SetCapture() OVERRIDE; |
| 27 virtual void ReleaseCapture() OVERRIDE; |
| 28 |
| 29 Delegate* delegate_; |
| 30 gfx::Rect bounds_; |
| 31 |
| 32 DISALLOW_COPY_AND_ASSIGN(PlatformViewportHeadless); |
| 33 }; |
| 34 |
| 35 } // namespace mojo |
OLD | NEW |