WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
98277
[chromium] Allow dragging into plugins.
https://bugs.webkit.org/show_bug.cgi?id=98277
Summary
[chromium] Allow dragging into plugins.
Sadrul Habib Chowdhury
Reported
2012-10-03 09:27:33 PDT
[chromium] Allow dragging into plugins.
Attachments
Patch
(7.55 KB, patch)
2012-10-03 09:29 PDT
,
Sadrul Habib Chowdhury
no flags
Details
Formatted Diff
Diff
Patch
(13.15 KB, patch)
2012-10-03 10:21 PDT
,
Sadrul Habib Chowdhury
no flags
Details
Formatted Diff
Diff
Patch
(13.22 KB, patch)
2012-10-03 12:07 PDT
,
Sadrul Habib Chowdhury
no flags
Details
Formatted Diff
Diff
Patch
(13.21 KB, patch)
2012-10-03 12:08 PDT
,
Sadrul Habib Chowdhury
no flags
Details
Formatted Diff
Diff
Patch
(13.22 KB, patch)
2012-10-03 13:15 PDT
,
Sadrul Habib Chowdhury
tony
: review+
tony
: commit-queue-
Details
Formatted Diff
Diff
Patch
(13.19 KB, patch)
2012-10-04 14:25 PDT
,
Sadrul Habib Chowdhury
tony
: review+
webkit.review.bot
: commit-queue-
Details
Formatted Diff
Diff
Patch for landing
(13.14 KB, patch)
2012-10-04 18:44 PDT
,
Sadrul Habib Chowdhury
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Sadrul Habib Chowdhury
Comment 1
2012-10-03 09:29:22 PDT
Created
attachment 166912
[details]
Patch
WebKit Review Bot
Comment 2
2012-10-03 09:33:08 PDT
Please wait for approval from
abarth@webkit.org
,
dglazkov@chromium.org
,
fishd@chromium.org
,
jamesr@chromium.org
or
tkent@chromium.org
before submitting, as this patch contains changes to the Chromium public API. See also
https://trac.webkit.org/wiki/ChromiumWebKitAPI
.
WebKit Review Bot
Comment 3
2012-10-03 09:35:07 PDT
Comment on
attachment 166912
[details]
Patch
Attachment 166912
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/14132700
Peter Beverloo (cr-android ews)
Comment 4
2012-10-03 09:45:00 PDT
Comment on
attachment 166912
[details]
Patch
Attachment 166912
[details]
did not pass cr-android-ews (chromium-android): Output:
http://queues.webkit.org/results/14138630
Sadrul Habib Chowdhury
Comment 5
2012-10-03 10:21:37 PDT
Created
attachment 166916
[details]
Patch
WebKit Review Bot
Comment 6
2012-10-03 10:26:58 PDT
Comment on
attachment 166916
[details]
Patch
Attachment 166916
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/14131735
Peter Beverloo (cr-android ews)
Comment 7
2012-10-03 10:31:06 PDT
Comment on
attachment 166916
[details]
Patch
Attachment 166916
[details]
did not pass cr-android-ews (chromium-android): Output:
http://queues.webkit.org/results/14126846
Sadrul Habib Chowdhury
Comment 8
2012-10-03 10:36:26 PDT
(In reply to
comment #7
)
> (From update of
attachment 166916
[details]
) >
Attachment 166916
[details]
did not pass cr-android-ews (chromium-android): > Output:
http://queues.webkit.org/results/14126846
Hi! The chromium side of this CL to fix the build is at:
http://codereview.chromium.org/11043022/
. But I wanted to get this WebKit side reviewed first, so that I can update the chrome-CL before landing. So please take a look at this patch despite the build failures :)
Adam Barth
Comment 9
2012-10-03 11:03:47 PDT
Comment on
attachment 166916
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166916&action=review
Seems reasonable to me, but I'm not a drag-and-drop expert. API change LGTM.
> Source/WebKit/chromium/public/WebDragState.h:40 > + WebDragStateUnknown = 0, > + WebDragStateEnter = 1, > + WebDragStateOver = 2, > + WebDragStateLeave = 3
The = sign should only be separated from the enum name by a single space.
Robert Kroeger
Comment 10
2012-10-03 11:12:57 PDT
Comment on
attachment 166916
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166916&action=review
> Source/WebKit/chromium/public/WebDragState.h:31 > +#ifndef WebDragState_h
There is an existing DragState in webcore. the typical convention is that a WebFoo wraps a WebCore::Foo. at the risk of bike-shedding, this might need to be renamed? Couldn't you also suck in
> Source/WebKit/chromium/public/WebPlugin.h:86 > + virtual bool handleDragEvent(WebDragState, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) = 0;
we don't have drag events right? So maybe a different name?
> Source/WebKit/chromium/src/WebPluginContainerImpl.cpp:712 > + dragState = WebDragStateEnter;
why do we need to track the drag state here? why not pass the eventName() to the handleDragEvent and wrap that in a Web interface?
Sadrul Habib Chowdhury
Comment 11
2012-10-03 12:07:23 PDT
Created
attachment 166933
[details]
Patch
Sadrul Habib Chowdhury
Comment 12
2012-10-03 12:08:55 PDT
Created
attachment 166934
[details]
Patch
Sadrul Habib Chowdhury
Comment 13
2012-10-03 12:09:30 PDT
Comment on
attachment 166916
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166916&action=review
>> Source/WebKit/chromium/public/WebDragState.h:31 >> +#ifndef WebDragState_h > > There is an existing DragState in webcore. the typical convention is that a WebFoo wraps a WebCore::Foo. at the risk of bike-shedding, this might need to be renamed? Couldn't you also suck in
Renamed this to WebDragStatus.
>> Source/WebKit/chromium/public/WebDragState.h:40 >> + WebDragStateLeave = 3 > > The = sign should only be separated from the enum name by a single space.
Fixed.
>> Source/WebKit/chromium/public/WebPlugin.h:86 >> + virtual bool handleDragEvent(WebDragState, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) = 0; > > we don't have drag events right? So maybe a different name?
Ranamed WebDragState to WebDragStatus, and handleDragEvent to handleDragStatusUpdate.
>> Source/WebKit/chromium/src/WebPluginContainerImpl.cpp:712 >> + dragState = WebDragStateEnter; > > why do we need to track the drag state here? why not pass the eventName() to the handleDragEvent and wrap that in a Web interface?
The handleDragEvent implementations do not have access to eventNames() (they are usually in chrome land). Adding a wrapper for all of eventNames() is probably an overkill. The current way is to convert these into some enum (usually something in WebInputEvent)
Sadrul Habib Chowdhury
Comment 14
2012-10-03 12:14:26 PDT
Comment on
attachment 166934
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166934&action=review
> Source/WebKit/chromium/public/WebPlugin.h:87 > +
To allow less churn around this, would it be acceptable to have a default implementation here for now, and remove the implementation after the chrome implementations land? I was planning on landing the chrome stub-implementations first, but it'd probably be easier if this lands first with the default implementation, then the chrome CL lands, and then I remove the default implementation form here.
Peter Beverloo (cr-android ews)
Comment 15
2012-10-03 12:31:43 PDT
Comment on
attachment 166934
[details]
Patch
Attachment 166934
[details]
did not pass cr-android-ews (chromium-android): Output:
http://queues.webkit.org/results/14137689
WebKit Review Bot
Comment 16
2012-10-03 12:33:17 PDT
Comment on
attachment 166934
[details]
Patch
Attachment 166934
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/14138673
Sadrul Habib Chowdhury
Comment 17
2012-10-03 13:15:15 PDT
Created
attachment 166946
[details]
Patch
Sadrul Habib Chowdhury
Comment 18
2012-10-03 14:11:48 PDT
(In reply to
comment #14
)
> (From update of
attachment 166934
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=166934&action=review
> > > Source/WebKit/chromium/public/WebPlugin.h:87 > > + > > To allow less churn around this, would it be acceptable to have a default implementation here for now, and remove the implementation after the chrome implementations land? I was planning on landing the chrome stub-implementations first, but it'd probably be easier if this lands first with the default implementation, then the chrome CL lands, and then I remove the default implementation form here.
I have gone ahead with the default implementation here (looks like there are other default implementations here (e.g. container(), supportsKeyboardFocus() etc.). The EWS bots are all super happy. PTAL.
Sadrul Habib Chowdhury
Comment 19
2012-10-04 13:28:56 PDT
Hi Tony! Would you mind reviewing this change? (Adding you since I understand you have reviewed drag-n-drop related changes before). Thanks!
Tony Chang
Comment 20
2012-10-04 13:53:07 PDT
Comment on
attachment 166946
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166946&action=review
Looks fine overall.
> Source/WebKit/chromium/public/WebDragStatus.h:40 > + WebDragStatusUnknown = 0, > + WebDragStatusEnter = 1, > + WebDragStatusOver = 2, > + WebDragStatusLeave = 3
Do we have to explicitly number these?
> Source/WebKit/chromium/public/WebPlugin.h:86 > + virtual bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) { return false; }
What is the purpose of the return value? In WebPluginContainerImpl.cpp, we ignore the return value.
> LayoutTests/platform/chromium/plugins/drag-events.html:18 > + document.write("This test does not work in manual mode.");
Normally we write instructions on how to run the test manually. E.g., drag the select to the plugin; it should output blah. This allows someone to run the test in Chromium as well.
> LayoutTests/platform/chromium/plugins/drag-events.html:36 > + eventSender.mouseDown(); > + eventSender.mouseMoveTo(positionX, positionY);
This might not work on Chromium Mac since you have to wait 250ms after a mouseDown before it's considered a drag. You can use eventSender.leapForward(250) to get this working on Mac.
> LayoutTests/platform/chromium/plugins/drag-events.html:41 > + testRunner.notifyDone();
Do we need the notifyDone? You don't actually call waitUntilDone anywhere.
Sadrul Habib Chowdhury
Comment 21
2012-10-04 14:22:17 PDT
Comment on
attachment 166946
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166946&action=review
>> Source/WebKit/chromium/public/WebDragStatus.h:40 >> + WebDragStatusLeave = 3 > > Do we have to explicitly number these?
I looked at some of the other places where enums are used in chromium/public/, and it looks like only the first entry is explicitly given a value. So I have followed the same style here, and removed the explicit numbers from the rest of the entries.
>> LayoutTests/platform/chromium/plugins/drag-events.html:18 >> + document.write("This test does not work in manual mode."); > > Normally we write instructions on how to run the test manually. E.g., drag the select to the plugin; it should output blah. This allows someone to run the test in Chromium as well.
It looks like none of the plugin-tests that deal with events are testable manually (since the test-expectation is actually the stdout output). So I have kept this unchanged.
>> LayoutTests/platform/chromium/plugins/drag-events.html:36 >> + eventSender.mouseMoveTo(positionX, positionY); > > This might not work on Chromium Mac since you have to wait 250ms after a mouseDown before it's considered a drag. You can use eventSender.leapForward(250) to get this working on Mac.
Done. Thanks!
>> LayoutTests/platform/chromium/plugins/drag-events.html:41 >> + testRunner.notifyDone(); > > Do we need the notifyDone? You don't actually call waitUntilDone anywhere.
Whoops. Removed.
Sadrul Habib Chowdhury
Comment 22
2012-10-04 14:25:58 PDT
Created
attachment 167172
[details]
Patch
Sadrul Habib Chowdhury
Comment 23
2012-10-04 14:26:35 PDT
Comment on
attachment 167172
[details]
Patch Thanks for the quick review!
Sadrul Habib Chowdhury
Comment 24
2012-10-04 14:27:59 PDT
Comment on
attachment 166946
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=166946&action=review
>> Source/WebKit/chromium/public/WebPlugin.h:86 >> + virtual bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) { return false; } > > What is the purpose of the return value? In WebPluginContainerImpl.cpp, we ignore the return value.
Oh, I didn't address this comment. My plan is that the return value will indicate whether the plugin is willing to accept the drop, in which case, the mouse-cursor will change accordingly.
Tony Chang
Comment 25
2012-10-04 14:34:42 PDT
(In reply to
comment #21
)
> (From update of
attachment 166946
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=166946&action=review
> > >> LayoutTests/platform/chromium/plugins/drag-events.html:18 > >> + document.write("This test does not work in manual mode."); > > > > Normally we write instructions on how to run the test manually. E.g., drag the select to the plugin; it should output blah. This allows someone to run the test in Chromium as well. > > It looks like none of the plugin-tests that deal with events are testable manually (since the test-expectation is actually the stdout output). So I have kept this unchanged.
If you manually ran the steps in Chromium, wouldn't you still see the results on stdout? I thought NPAPI plugin processes weren't sandboxed.
Sadrul Habib Chowdhury
Comment 26
2012-10-04 14:42:21 PDT
(In reply to
comment #25
)
> (In reply to
comment #21
) > > (From update of
attachment 166946
[details]
[details]) > > View in context:
https://bugs.webkit.org/attachment.cgi?id=166946&action=review
> > > > >> LayoutTests/platform/chromium/plugins/drag-events.html:18 > > >> + document.write("This test does not work in manual mode."); > > > > > > Normally we write instructions on how to run the test manually. E.g., drag the select to the plugin; it should output blah. This allows someone to run the test in Chromium as well. > > > > It looks like none of the plugin-tests that deal with events are testable manually (since the test-expectation is actually the stdout output). So I have kept this unchanged. > > If you manually ran the steps in Chromium, wouldn't you still see the results on stdout? I thought NPAPI plugin processes weren't sandboxed.
My understanding is that this test plugin (TestWebPlugin) is not an NPAPI plugin.
Tony Chang
Comment 27
2012-10-04 14:59:28 PDT
(In reply to
comment #26
)
> (In reply to
comment #25
) > > If you manually ran the steps in Chromium, wouldn't you still see the results on stdout? I thought NPAPI plugin processes weren't sandboxed. > > My understanding is that this test plugin (TestWebPlugin) is not an NPAPI plugin.
Ah, you're right. It looks like the plugin is compiled directly into DumpRenderTree.
Sadrul Habib Chowdhury
Comment 28
2012-10-04 15:03:16 PDT
(In reply to
comment #27
)
> (In reply to
comment #26
) > > (In reply to
comment #25
) > > > If you manually ran the steps in Chromium, wouldn't you still see the results on stdout? I thought NPAPI plugin processes weren't sandboxed. > > > > My understanding is that this test plugin (TestWebPlugin) is not an NPAPI plugin. > > Ah, you're right. It looks like the plugin is compiled directly into DumpRenderTree.
Cool! Thanks for the really quick reviews. Mind helping with the r?/cq? flags too? :)
Tony Chang
Comment 29
2012-10-04 15:07:39 PDT
(In reply to
comment #28
)
> Mind helping with the r?/cq? flags too? :)
If you use webkit-patch and you already have an r+, you can use 'webkit-patch land-safely' to upload a new patch that sets the cq flag appropriately (cq+ if you're a committer, cq? if you're not).
WebKit Review Bot
Comment 30
2012-10-04 18:03:21 PDT
Comment on
attachment 167172
[details]
Patch Rejecting
attachment 167172
[details]
from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=queues.webkit.org', '-..." exit_code: 2 Last 500 characters of output: top rebasing run "git rebase --abort". rebase refs/remotes/origin/master: command returned error: 1 Died at Tools/Scripts/update-webkit line 164. Failed to run "['Tools/Scripts/update-webkit', '--chromium', '--force-update']" exit_code: 9 If you would prefer to skip this patch, instead run "git rebase --skip". To restore the original branch and stop rebasing run "git rebase --abort". rebase refs/remotes/origin/master: command returned error: 1 Died at Tools/Scripts/update-webkit line 164. Full output:
http://queues.webkit.org/results/14168524
Sadrul Habib Chowdhury
Comment 31
2012-10-04 18:31:08 PDT
(In reply to
comment #29
)
> (In reply to
comment #28
) > > > Mind helping with the r?/cq? flags too? :) > > If you use webkit-patch and you already have an r+, you can use 'webkit-patch land-safely' to upload a new patch that sets the cq flag appropriately (cq+ if you're a committer, cq? if you're not).
Oh, cool! That's useful. Thanks!
Sadrul Habib Chowdhury
Comment 32
2012-10-04 18:44:30 PDT
Created
attachment 167219
[details]
Patch for landing
WebKit Review Bot
Comment 33
2012-10-05 07:42:14 PDT
Comment on
attachment 167219
[details]
Patch for landing Clearing flags on attachment: 167219 Committed
r130504
: <
http://trac.webkit.org/changeset/130504
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug