| Index: Source/WebKit/chromium/public/WebPlugin.h
|
| diff --git a/Source/WebKit/chromium/public/WebPlugin.h b/Source/WebKit/chromium/public/WebPlugin.h
|
| index 6fe94b55b7541a36d823f00b743954a54d2c7d0e..39c680a2109ea3b40e9d6756852577dfbbaddd8a 100644
|
| --- a/Source/WebKit/chromium/public/WebPlugin.h
|
| +++ b/Source/WebKit/chromium/public/WebPlugin.h
|
| @@ -69,6 +69,7 @@ public:
|
| // of the corresponding object element.
|
| virtual bool getFormValue(WebString&) { return false; }
|
| virtual bool supportsKeyboardFocus() const { return false; }
|
| + virtual bool supportsEditCommands() const { return false; }
|
|
|
| virtual bool canProcessDrag() const { return false; }
|
|
|
| @@ -120,6 +121,7 @@ public:
|
| virtual WebString selectionAsMarkup() const { return WebString(); }
|
|
|
| virtual bool executeEditCommand(const WebString& name) { return false; }
|
| + virtual bool executeEditCommand(const WebString& name, const WebString& value) { return false; }
|
|
|
| // If the given position is over a link, returns the absolute url.
|
| // Otherwise an empty url is returned.
|
|
|