Popular sites on the NTP: Try to keep the ordering constant
[chromium-blink-merge.git] / content / public / browser / browser_plugin_guest_delegate.cc
blobfd7dec4ccf8ca1960eba28be12715a1cea6b694a
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/public/browser/browser_plugin_guest_delegate.h"
7 namespace content {
9 bool BrowserPluginGuestDelegate::CanRunInDetachedState() const {
10 return false;
13 WebContents* BrowserPluginGuestDelegate::CreateNewGuestWindow(
14 const WebContents::CreateParams& create_params) {
15 NOTREACHED();
16 return nullptr;
19 WebContents* BrowserPluginGuestDelegate::GetOwnerWebContents() const {
20 return nullptr;
23 bool BrowserPluginGuestDelegate::Find(int request_id,
24 const base::string16& search_text,
25 const blink::WebFindOptions& options) {
26 return false;
29 bool BrowserPluginGuestDelegate::StopFinding(StopFindAction action) {
30 return false;
33 } // namespace content