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

Unified Diff: android_webview/native/aw_contents.h

Issue 12697002: [Android WebView] Provide more information about WebView for web debugging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/native/aw_contents.h
diff --git a/android_webview/native/aw_contents.h b/android_webview/native/aw_contents.h
index a72dc3257b5be74cb6eb2277e1180cd9b4a18627..c4af92863c6c278e40adf2f1e4695fe5a5cf7f06 100644
--- a/android_webview/native/aw_contents.h
+++ b/android_webview/native/aw_contents.h
@@ -156,11 +156,17 @@ class AwContents : public FindHelper::Listener,
virtual void Invalidate() OVERRIDE;
virtual void OnNewPicture(
const base::android::JavaRef<jobject>& picture) OVERRIDE;
+ virtual bool isAttachedToViewHierarchy() OVERRIDE;
+ virtual gfx::Point getLocationOnScreen() OVERRIDE;
void ClearCache(JNIEnv* env, jobject obj, jboolean include_disk_files);
void SetPendingWebContentsForPopup(scoped_ptr<content::WebContents> pending);
jint ReleasePopupWebContents(JNIEnv* env, jobject obj);
+ BrowserViewRenderer* browser_view_renderer() {
+ return browser_view_renderer_.get();
+ }
+
private:
void SetWebContents(content::WebContents* web_contents);

Powered by Google App Engine
This is Rietveld 408576698