OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_CONTENT_BROWSER_CLIENT_H_ |
6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_AW_CONTENT_BROWSER_CLIENT_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "content/public/browser/content_browser_client.h" | 14 #include "content/public/browser/content_browser_client.h" |
15 | 15 |
16 namespace android_webview { | 16 namespace android_webview { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 private: | 135 private: |
136 // Android WebView currently has a single global (non-off-the-record) browser | 136 // Android WebView currently has a single global (non-off-the-record) browser |
137 // context. | 137 // context. |
138 std::unique_ptr<AwBrowserContext> browser_context_; | 138 std::unique_ptr<AwBrowserContext> browser_context_; |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); | 140 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); |
141 }; | 141 }; |
142 | 142 |
143 } // namespace android_webview | 143 } // namespace android_webview |
144 | 144 |
145 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |