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

Issue 10890024: Implement DocuementHasImages (Closed)

Created:
8 years, 3 months ago by joth
Modified:
8 years, 3 months ago
CC:
chromium-reviews, darin-cc_chromium.org, erikwright+watch_chromium.org, jam, brettw-cc_chromium.org, android-webview-reviews_google.com
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Implement DocuementHasImages Requires new plumbing to get custom android_webview layer IPC messages a flowing. BUG= Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=154564

Patch Set 1 #

Total comments: 6

Patch Set 2 : Added test #

Patch Set 3 : removed spurious files #

Patch Set 4 : fix test #

Total comments: 19

Patch Set 5 : review comments #

Patch Set 6 : ws #

Patch Set 7 : cleanup #

Patch Set 8 : rebased #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+433 lines, -43 lines) Patch
M android_webview/android_webview.gyp View 1 2 chunks +8 lines, -0 lines 0 comments Download
A android_webview/browser/renderer_host/aw_render_view_host_ext.h View 1 2 3 4 1 chunk +42 lines, -0 lines 0 comments Download
A android_webview/browser/renderer_host/aw_render_view_host_ext.cc View 1 2 3 4 1 chunk +69 lines, -0 lines 0 comments Download
A android_webview/common/android_webview_message_generator.h View 1 chunk +8 lines, -0 lines 0 comments Download
A android_webview/common/android_webview_message_generator.cc View 1 chunk +34 lines, -0 lines 0 comments Download
A android_webview/common/render_view_messages.h View 1 2 1 chunk +43 lines, -0 lines 0 comments Download
A android_webview/common/render_view_messages.cc View 1 2 1 chunk +11 lines, -0 lines 0 comments Download
M android_webview/java/src/org/chromium/android_webview/AwContents.java View 1 3 chunks +32 lines, -6 lines 0 comments Download
android_webview/javatests/src/org/chromium/android_webview/test/AwContentsTest.java View 1 2 3 4 1 chunk +52 lines, -36 lines 0 comments Download
M android_webview/lib/aw_content_browser_client.cc View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M android_webview/lib/main/aw_main_delegate.cc View 1 2 chunks +15 lines, -1 line 0 comments Download
M android_webview/native/aw_contents.h View 1 2 chunks +3 lines, -0 lines 0 comments Download
M android_webview/native/aw_contents.cc View 1 4 chunks +24 lines, -0 lines 1 comment Download
A android_webview/renderer/DEPS View 1 chunk +3 lines, -0 lines 0 comments Download
A android_webview/renderer/aw_render_view_ext.h View 1 1 chunk +35 lines, -0 lines 0 comments Download
A android_webview/renderer/aw_render_view_ext.cc View 1 2 3 4 5 6 1 chunk +51 lines, -0 lines 0 comments Download
M base/android/jni_generator/jni_generator.py View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download
M ipc/ipc_message_utils.h View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 14 (0 generated)
Torne
https://chromiumcodereview.appspot.com/10890024/diff/1/android_webview/aw_common.gypi File android_webview/aw_common.gypi (left): https://chromiumcodereview.appspot.com/10890024/diff/1/android_webview/aw_common.gypi#oldcode7 android_webview/aw_common.gypi:7: 'sources': [ Let's not add any more of these ...
8 years, 3 months ago (2012-08-29 10:34:29 UTC) #1
joth
thanks for the quick feedback on this. http://codereview.chromium.org/10890024/diff/1/android_webview/aw_common.gypi File android_webview/aw_common.gypi (left): http://codereview.chromium.org/10890024/diff/1/android_webview/aw_common.gypi#oldcode7 android_webview/aw_common.gypi:7: 'sources': [ ...
8 years, 3 months ago (2012-08-29 22:28:05 UTC) #2
joth
This is like almost ready to go; hitting some unrelated problems in trying to run ...
8 years, 3 months ago (2012-08-30 02:29:15 UTC) #3
joth
Test now passing so 'good to go' Suggested bits for focus on:- torne: gyp files, ...
8 years, 3 months ago (2012-08-30 02:58:57 UTC) #4
mkosiba (inactive)
http://codereview.chromium.org/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.cc File android_webview/browser/renderer_host/aw_render_view_host_ext.cc (right): http://codereview.chromium.org/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.cc#newcode26 android_webview/browser/renderer_host/aw_render_view_host_ext.cc:26: static int next_id = 1; ugh... please make the ...
8 years, 3 months ago (2012-08-30 09:43:13 UTC) #5
Torne
gyp/layout LGTM, no other comments
8 years, 3 months ago (2012-08-30 13:15:52 UTC) #6
benm (inactive)
https://chromiumcodereview.appspot.com/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.h File android_webview/browser/renderer_host/aw_render_view_host_ext.h (right): https://chromiumcodereview.appspot.com/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.h#newcode12 android_webview/browser/renderer_host/aw_render_view_host_ext.h:12: // Provides a convenience methods around a RenderViewHost for ...
8 years, 3 months ago (2012-08-30 13:30:45 UTC) #7
joth
thanks https://chromiumcodereview.appspot.com/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.cc File android_webview/browser/renderer_host/aw_render_view_host_ext.cc (right): https://chromiumcodereview.appspot.com/10890024/diff/1020/android_webview/browser/renderer_host/aw_render_view_host_ext.cc#newcode26 android_webview/browser/renderer_host/aw_render_view_host_ext.cc:26: static int next_id = 1; On 2012/08/30 09:43:13, ...
8 years, 3 months ago (2012-08-30 17:26:53 UTC) #8
joth
+jam, could you rubberstamp ipc/* and if you have time also look over the common/* ...
8 years, 3 months ago (2012-08-30 23:32:52 UTC) #9
jam
lgtm
8 years, 3 months ago (2012-08-31 02:18:37 UTC) #10
mkosiba (inactive)
LGTM https://chromiumcodereview.appspot.com/10890024/diff/19019/android_webview/native/aw_contents.cc File android_webview/native/aw_contents.cc (right): https://chromiumcodereview.appspot.com/10890024/diff/19019/android_webview/native/aw_contents.cc#newcode103 android_webview/native/aw_contents.cc:103: base::Owned(new ScopedJavaGlobalRef<jobject>( ok, this just looks like ScopedJavaGlobalRef ...
8 years, 3 months ago (2012-08-31 09:29:35 UTC) #11
joth
On 2012/08/31 09:29:35, Martin Kosiba wrote: > LGTM > > https://chromiumcodereview.appspot.com/10890024/diff/19019/android_webview/native/aw_contents.cc > File android_webview/native/aw_contents.cc (right): ...
8 years, 3 months ago (2012-08-31 22:13:39 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/joth@chromium.org/10890024/19019
8 years, 3 months ago (2012-08-31 22:32:57 UTC) #13
commit-bot: I haz the power
8 years, 3 months ago (2012-09-01 01:33:06 UTC) #14
Change committed as 154564

Powered by Google App Engine
This is Rietveld 408576698