blob: 81a843b246a39329ec6bbb0046d445e8a82780ba [file] [log] [blame]
[email protected]24569262014-05-06 03:31:301// 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.
4
[email protected]139355f2014-05-11 14:21:285#include "content/public/browser/browser_plugin_guest_manager.h"
[email protected]24569262014-05-06 03:31:306
7namespace content {
8
fsamuel986f5912014-08-27 01:11:309WebContents* BrowserPluginGuestManager::GetGuestByInstanceID(
fsamuel833ee7c2015-02-13 23:40:4010 int owner_process_id,
fsamuel986f5912014-08-27 01:11:3011 int browser_plugin_instance_id) {
mlamouri8c61ffc2015-01-13 16:17:5912 return nullptr;
fsamuel986f5912014-08-27 01:11:3013}
14
Mark Pilgrimd84121732018-03-22 14:12:1215bool BrowserPluginGuestManager::ForEachGuest(WebContents* embedder_web_contents,
16 const GuestCallback& callback) {
[email protected]24569262014-05-06 03:31:3017 return false;
18}
19
raymes5491de12015-04-17 02:01:3020WebContents* BrowserPluginGuestManager::GetFullPageGuest(
21 WebContents* embedder_web_contents) {
22 return nullptr;
23}
24
[email protected]24569262014-05-06 03:31:3025} // content
26