Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: android_webview/native/webview_web_contents_delegate_android.h

Issue 10831060: Refactor the Android port to allow access to the chrome layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adding web_contents_delegate_android component. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698