OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef ANDROID_WEBVIEW_NATIVE_WEBVIEW_WEB_CONTENTS_DELEGATE_ANDROID_H_ | |
6 #define ANDROID_WEBVIEW_NATIVE_WEBVIEW_WEB_CONTENTS_DELEGATE_ANDROID_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 #include "chrome/browser/component/web_contents_delegate_android/web_contents_de legate_android.h" | |
11 | |
12 namespace android_webview { | |
13 | |
14 // WebView specific WebContentsDelegate. | |
15 // Should contain WebContentsDelegate code required by WebView that should not | |
16 // be part of the Chromium Android port. | |
17 class WebViewWebContentsDelegateAndroid | |
Jói
2012/08/20 14:02:39
I think joth@ had proposed Aw as a prefix instead
Leandro Graciá Gil
2012/08/20 20:26:17
Confirmed the name to use with Joth. Renaming.
| |
18 : public chrome::component::web_contents_delegate_android:: | |
Jói
2012/08/20 14:02:39
This namespace nesting is pretty deep. Personally
Leandro Graciá Gil
2012/08/20 20:26:17
Done.
| |
19 WebContentsDelegateAndroid { | |
20 public: | |
21 WebViewWebContentsDelegateAndroid(JNIEnv* env, jobject obj); | |
22 virtual ~WebViewWebContentsDelegateAndroid(); | |
23 }; | |
24 | |
25 } // namespace android_webview | |
26 | |
27 #endif // ANDROID_WEBVIEW_NATIVE_WEBVIEW_WEB_CONTENTS_DELEGATE_ANDROID_H_ | |
OLD | NEW |