[email protected] | 2456926 | 2014-05-06 03:31:30 | [diff] [blame] | 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. | ||||
4 | |||||
[email protected] | 139355f | 2014-05-11 14:21:28 | [diff] [blame] | 5 | #include "content/public/browser/browser_plugin_guest_manager.h" |
[email protected] | 2456926 | 2014-05-06 03:31:30 | [diff] [blame] | 6 | |
7 | namespace content { | ||||
8 | |||||
fsamuel | 986f591 | 2014-08-27 01:11:30 | [diff] [blame] | 9 | WebContents* BrowserPluginGuestManager::GetGuestByInstanceID( |
fsamuel | 833ee7c | 2015-02-13 23:40:40 | [diff] [blame] | 10 | int owner_process_id, |
fsamuel | 986f591 | 2014-08-27 01:11:30 | [diff] [blame] | 11 | int browser_plugin_instance_id) { |
mlamouri | 8c61ffc | 2015-01-13 16:17:59 | [diff] [blame] | 12 | return nullptr; |
fsamuel | 986f591 | 2014-08-27 01:11:30 | [diff] [blame] | 13 | } |
14 | |||||
Mark Pilgrim | d8412173 | 2018-03-22 14:12:12 | [diff] [blame] | 15 | bool BrowserPluginGuestManager::ForEachGuest(WebContents* embedder_web_contents, |
16 | const GuestCallback& callback) { | ||||
[email protected] | 2456926 | 2014-05-06 03:31:30 | [diff] [blame] | 17 | return false; |
18 | } | ||||
19 | |||||
raymes | 5491de1 | 2015-04-17 02:01:30 | [diff] [blame] | 20 | WebContents* BrowserPluginGuestManager::GetFullPageGuest( |
21 | WebContents* embedder_web_contents) { | ||||
22 | return nullptr; | ||||
23 | } | ||||
24 | |||||
[email protected] | 2456926 | 2014-05-06 03:31:30 | [diff] [blame] | 25 | } // content |
26 |