| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ | 5 #ifndef BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ |
| 6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ | 6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "blimp/client/core/contents/blimp_contents_view_impl.h" | 10 #include "blimp/client/core/contents/blimp_contents_view_impl.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 namespace blimp { | 23 namespace blimp { |
| 24 namespace client { | 24 namespace client { |
| 25 | 25 |
| 26 #if defined(OS_ANDROID) | 26 #if defined(OS_ANDROID) |
| 27 class BlimpContentsImplAndroid; | 27 class BlimpContentsImplAndroid; |
| 28 #endif // defined(OS_ANDROID) | 28 #endif // defined(OS_ANDROID) |
| 29 | 29 |
| 30 class BlimpCompositorDependencies; | 30 class BlimpCompositorDependencies; |
| 31 class BlimpContentsObserver; | 31 class BlimpContentsObserver; |
| 32 class BlimpNavigationController; | |
| 33 class ImeFeature; | 32 class ImeFeature; |
| 34 class NavigationFeature; | 33 class NavigationFeature; |
| 35 class RenderWidgetFeature; | 34 class RenderWidgetFeature; |
| 36 class TabControlFeature; | 35 class TabControlFeature; |
| 37 | 36 |
| 38 class BlimpContentsImpl : public BlimpContents, | 37 class BlimpContentsImpl : public BlimpContents, |
| 39 public BlimpNavigationControllerDelegate { | 38 public BlimpNavigationControllerDelegate { |
| 40 public: | 39 public: |
| 41 // Ownership of the features remains with the caller. | 40 // Ownership of the features remains with the caller. |
| 42 // |window| must be the platform specific window that this will be shown in. | 41 // |window| must be the platform specific window that this will be shown in. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // from the BlimpContents. | 114 // from the BlimpContents. |
| 116 std::unique_ptr<BlimpContentsViewImpl> blimp_contents_view_; | 115 std::unique_ptr<BlimpContentsViewImpl> blimp_contents_view_; |
| 117 | 116 |
| 118 DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl); | 117 DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl); |
| 119 }; | 118 }; |
| 120 | 119 |
| 121 } // namespace client | 120 } // namespace client |
| 122 } // namespace blimp | 121 } // namespace blimp |
| 123 | 122 |
| 124 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ | 123 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ |
| OLD | NEW |