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

Issue 11192057: [Android] Add supportMultipleWindows setting (Closed)

Created:
8 years, 2 months ago by mnaganov (inactive)
Modified:
8 years, 1 month ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, android-webview-reviews_chromium.org
Visibility:
Public.

Description

[Android] Add supportMultipleWindows setting Add supportMultipleWindows settings for reusing the same view when opening popups. This is required for emulating the behavior of Android WebView. Depends on the WebKit patch: https://bugs.webkit.org/show_bug.cgi?id=99716 R=joth@chromium.org BUG=156600 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=164909

Patch Set 1 #

Total comments: 9

Patch Set 2 : Comments addressed #

Patch Set 3 : Fixed compilation issue #

Patch Set 4 : Updated to match the committed version of the WebKit part #

Total comments: 6

Patch Set 5 : Comments addressed, moved fields in WebPreferences. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+169 lines, -26 lines) Patch
M android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java View 1 2 3 4 2 chunks +87 lines, -0 lines 0 comments Download
M content/browser/android/content_settings.cc View 1 2 3 4 4 chunks +12 lines, -0 lines 0 comments Download
M content/common/view_messages.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/ContentSettings.java View 1 2 3 4 2 chunks +29 lines, -0 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 3 4 1 chunk +11 lines, -4 lines 0 comments Download
M webkit/glue/webpreferences.h View 1 2 3 4 2 chunks +8 lines, -6 lines 0 comments Download
M webkit/glue/webpreferences.cc View 1 2 3 4 4 chunks +21 lines, -16 lines 0 comments Download

Messages

Total messages: 14 (0 generated)
mnaganov (inactive)
8 years, 2 months ago (2012-10-18 14:29:35 UTC) #1
joth
fly-by https://codereview.chromium.org/11192057/diff/1/content/renderer/render_view_impl.cc File content/renderer/render_view_impl.cc (right): https://codereview.chromium.org/11192057/diff/1/content/renderer/render_view_impl.cc#newcode2421 content/renderer/render_view_impl.cc:2421: #if !defined(OS_ANDROID) Maybe easier to follow as: if ...
8 years, 2 months ago (2012-10-18 20:06:00 UTC) #2
benm (inactive)
https://codereview.chromium.org/11192057/diff/1/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java File android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java (right): https://codereview.chromium.org/11192057/diff/1/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java#newcode809 android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java:809: class AwSettingsJavaScriptPopupsTestHelper extends AwSettingsTestHelper<Boolean> { This test seems to ...
8 years, 2 months ago (2012-10-19 11:02:59 UTC) #3
mnaganov (inactive)
https://codereview.chromium.org/11192057/diff/1/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java File android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java (right): https://codereview.chromium.org/11192057/diff/1/android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java#newcode809 android_webview/javatests/src/org/chromium/android_webview/test/AwSettingsTest.java:809: class AwSettingsJavaScriptPopupsTestHelper extends AwSettingsTestHelper<Boolean> { On 2012/10/19 11:02:59, benm ...
8 years, 2 months ago (2012-10-19 15:46:39 UTC) #4
mnaganov (inactive)
https://codereview.chromium.org/11192057/diff/1/content/renderer/render_view_impl.cc File content/renderer/render_view_impl.cc (right): https://codereview.chromium.org/11192057/diff/1/content/renderer/render_view_impl.cc#newcode2421 content/renderer/render_view_impl.cc:2421: #if !defined(OS_ANDROID) On 2012/10/19 15:46:39, Mikhail Naganov (Chromium) wrote: ...
8 years, 2 months ago (2012-10-19 16:22:55 UTC) #5
mnaganov (inactive)
The WebKit part of the patch has landed. Ben and Joth, do you have any ...
8 years, 1 month ago (2012-10-25 13:49:29 UTC) #6
joth
lgtm % nits https://codereview.chromium.org/11192057/diff/25001/content/common/view_messages.h File content/common/view_messages.h (right): https://codereview.chromium.org/11192057/diff/25001/content/common/view_messages.h#newcode150 content/common/view_messages.h:150: IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows) ditto comment from other thread ...
8 years, 1 month ago (2012-10-25 17:27:17 UTC) #7
mnaganov (inactive)
https://codereview.chromium.org/11192057/diff/25001/content/common/view_messages.h File content/common/view_messages.h (right): https://codereview.chromium.org/11192057/diff/25001/content/common/view_messages.h#newcode150 content/common/view_messages.h:150: IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows) On 2012/10/25 17:27:18, joth wrote: > ditto comment ...
8 years, 1 month ago (2012-10-26 10:05:42 UTC) #8
mnaganov (inactive)
John, can you please look at the contents/ part and on fields rearrangement in WebPreferences. ...
8 years, 1 month ago (2012-10-26 10:09:09 UTC) #9
jam
content lgtm, and thanks for rearranging the struct
8 years, 1 month ago (2012-10-26 20:11:35 UTC) #10
mnaganov (inactive)
Darin, ping. Can you please have a look at webkit/ ?
8 years, 1 month ago (2012-10-29 16:23:56 UTC) #11
darin (slow to review)
LGTM for src/webkit/
8 years, 1 month ago (2012-10-30 04:51:35 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/mnaganov@chromium.org/11192057/37001
8 years, 1 month ago (2012-10-30 09:45:32 UTC) #13
commit-bot: I haz the power
8 years, 1 month ago (2012-10-30 13:59:28 UTC) #14
Change committed as 164909

Powered by Google App Engine
This is Rietveld 408576698