| Index: content/public/browser/browser_plugin_guest_delegate.cc
|
| diff --git a/content/public/browser/browser_plugin_guest_delegate.cc b/content/public/browser/browser_plugin_guest_delegate.cc
|
| index 3196372ad90bdbfd906717997e952aee9b502327..90cc0b8858fae6d9453adaad16d95d0eb6a833b0 100644
|
| --- a/content/public/browser/browser_plugin_guest_delegate.cc
|
| +++ b/content/public/browser/browser_plugin_guest_delegate.cc
|
| @@ -12,48 +12,4 @@ bool BrowserPluginGuestDelegate::IsDragAndDropEnabled() {
|
| return false;
|
| }
|
|
|
| -void BrowserPluginGuestDelegate::RequestMediaAccessPermission(
|
| - const MediaStreamRequest& request,
|
| - const MediaResponseCallback& callback) {
|
| - callback.Run(MediaStreamDevices(),
|
| - MEDIA_DEVICE_INVALID_STATE,
|
| - scoped_ptr<MediaStreamUI>());
|
| -}
|
| -
|
| -void BrowserPluginGuestDelegate::CanDownload(
|
| - const std::string& request_method,
|
| - const GURL& url,
|
| - const base::Callback<void(bool)>& callback) {
|
| - callback.Run(true);
|
| -}
|
| -
|
| -JavaScriptDialogManager*
|
| -BrowserPluginGuestDelegate::GetJavaScriptDialogManager() {
|
| - return NULL;
|
| -}
|
| -
|
| -ColorChooser* BrowserPluginGuestDelegate::OpenColorChooser(
|
| - WebContents* web_contents,
|
| - SkColor color,
|
| - const std::vector<ColorSuggestion>& suggestions) {
|
| - return NULL;
|
| -}
|
| -
|
| -bool BrowserPluginGuestDelegate::HandleContextMenu(
|
| - const ContextMenuParams& params) {
|
| - return false;
|
| -}
|
| -
|
| -WebContents* BrowserPluginGuestDelegate::OpenURLFromTab(
|
| - WebContents* source,
|
| - const OpenURLParams& params) {
|
| - return NULL;
|
| -}
|
| -
|
| -bool BrowserPluginGuestDelegate::PreHandleGestureEvent(
|
| - content::WebContents* source,
|
| - const blink::WebGestureEvent& event) {
|
| - return false;
|
| -}
|
| -
|
| } // namespace content
|
|
|