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_BLIMP_CLIENT_CONTEXT_H_ | 5 #ifndef BLIMP_CLIENT_PUBLIC_BLIMP_CLIENT_CONTEXT_H_ |
6 #define BLIMP_CLIENT_PUBLIC_BLIMP_CLIENT_CONTEXT_H_ | 6 #define BLIMP_CLIENT_PUBLIC_BLIMP_CLIENT_CONTEXT_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "blimp/client/public/blimp_client_context_delegate.h" | 10 #include "blimp/client/public/blimp_client_context_delegate.h" |
11 #include "blimp/client/public/blimp_contents.h" | 11 #include "blimp/client/public/contents/blimp_contents.h" |
12 #include "components/keyed_service/core/keyed_service.h" | 12 #include "components/keyed_service/core/keyed_service.h" |
13 | 13 |
14 #if defined(OS_ANDROID) | 14 #if defined(OS_ANDROID) |
15 #include "base/android/jni_android.h" | 15 #include "base/android/jni_android.h" |
16 #endif // defined(OS_ANDROID) | 16 #endif // defined(OS_ANDROID) |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class SupportsUserData; | 19 class SupportsUserData; |
20 } | 20 } |
21 | 21 |
(...skipping 25 matching lines...) Expand all Loading... |
47 BlimpClientContext() = default; | 47 BlimpClientContext() = default; |
48 | 48 |
49 private: | 49 private: |
50 DISALLOW_COPY_AND_ASSIGN(BlimpClientContext); | 50 DISALLOW_COPY_AND_ASSIGN(BlimpClientContext); |
51 }; | 51 }; |
52 | 52 |
53 } // namespace client | 53 } // namespace client |
54 } // namespace blimp | 54 } // namespace blimp |
55 | 55 |
56 #endif // BLIMP_CLIENT_PUBLIC_BLIMP_CLIENT_CONTEXT_H_ | 56 #endif // BLIMP_CLIENT_PUBLIC_BLIMP_CLIENT_CONTEXT_H_ |
OLD | NEW |