| 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_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ | 5 #ifndef BLIMP_CLIENT_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ |
| 6 #define BLIMP_CLIENT_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ | 6 #define BLIMP_CLIENT_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/supports_user_data.h" | 9 #include "base/supports_user_data.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| 11 | 11 |
| 12 #if defined(OS_ANDROID) | 12 #if defined(OS_ANDROID) |
| 13 #include "base/android/scoped_java_ref.h" | 13 #include "base/android/scoped_java_ref.h" |
| 14 #endif | 14 #endif |
| 15 | 15 |
| 16 namespace cc { | |
| 17 class Layer; | |
| 18 } // namespace cc | |
| 19 | |
| 20 namespace blimp { | 16 namespace blimp { |
| 21 namespace client { | 17 namespace client { |
| 22 | 18 |
| 23 class BlimpContentsObserver; | 19 class BlimpContentsObserver; |
| 24 class BlimpContentsView; | 20 class BlimpContentsView; |
| 25 class BlimpNavigationController; | 21 class BlimpNavigationController; |
| 26 | 22 |
| 27 // BlimpContents is the core class in blimp client which is responsible for | 23 // BlimpContents is the core class in blimp client which is responsible for |
| 28 // rendering web pages in a rectangular area. The interaction with between the | 24 // rendering web pages in a rectangular area. The interaction with between the |
| 29 // client and engine is encapsulated behind this interface through the use of | 25 // client and engine is encapsulated behind this interface through the use of |
| (...skipping 28 matching lines...) Expand all Loading... |
| 58 BlimpContents() {} | 54 BlimpContents() {} |
| 59 | 55 |
| 60 private: | 56 private: |
| 61 DISALLOW_COPY_AND_ASSIGN(BlimpContents); | 57 DISALLOW_COPY_AND_ASSIGN(BlimpContents); |
| 62 }; | 58 }; |
| 63 | 59 |
| 64 } // namespace client | 60 } // namespace client |
| 65 } // namespace blimp | 61 } // namespace blimp |
| 66 | 62 |
| 67 #endif // BLIMP_CLIENT_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ | 63 #endif // BLIMP_CLIENT_PUBLIC_CONTENTS_BLIMP_CONTENTS_H_ |
| OLD | NEW |