blob: 69b9e98da2a976c12d468a40f241a6fb90429e52 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include "base/callback.h"
#include "base/strings/string16.h"
#include "content/browser/frame_host/render_frame_host_delegate.h"
#include "ipc/ipc_message.h"
#include "ui/gfx/native_widget_types.h"
#include "url/gurl.h"
namespace content {
bool RenderFrameHostDelegate::OnMessageReceived(
RenderFrameHost* render_view_host,
const IPC::Message& message) {
return false;
}
const GURL& RenderFrameHostDelegate::GetMainFrameLastCommittedURL() const {
return GURL::EmptyGURL();
}
bool RenderFrameHostDelegate::AddMessageToConsole(
int32 level, const base::string16& message, int32 line_no,
const base::string16& source_id) {
return false;
}
WebContents* RenderFrameHostDelegate::GetAsWebContents() {
return NULL;
}
void RenderFrameHostDelegate::RequestMediaAccessPermission(
const MediaStreamRequest& request,
const MediaResponseCallback& callback) {
LOG(ERROR) << "RenderFrameHostDelegate::RequestMediaAccessPermission: "
<< "Not supported.";
callback.Run(MediaStreamDevices(),
MEDIA_DEVICE_NOT_SUPPORTED,
scoped_ptr<MediaStreamUI>());
}
bool RenderFrameHostDelegate::CheckMediaAccessPermission(
const GURL& security_origin,
MediaStreamType type) {
LOG(ERROR) << "RenderFrameHostDelegate::CheckMediaAccessPermission: "
<< "Not supported.";
return false;
}
AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const {
return AccessibilityModeOff;
}
RenderFrameHost* RenderFrameHostDelegate::GetGuestByInstanceID(
RenderFrameHost* render_frame_host,
int browser_plugin_instance_id) {
return NULL;
}
GeolocationServiceContext*
RenderFrameHostDelegate::GetGeolocationServiceContext() {
return NULL;
}
WakeLockServiceContext* RenderFrameHostDelegate::GetWakeLockServiceContext() {
return nullptr;
}
bool RenderFrameHostDelegate::ShouldRouteMessageEvent(
RenderFrameHost* target_rfh,
SiteInstance* source_site_instance) const {
return false;
}
#if defined(OS_WIN)
gfx::NativeViewAccessible
RenderFrameHostDelegate::GetParentNativeViewAccessible() {
return NULL;
}
#endif // defined(OS_WIN)
} // namespace content