Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: content/public/browser/browser_plugin_guest_delegate.cc

Issue 336283002: Remove GuestWebContentsCreated (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simplify_creation
Patch Set: Fix diff Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
5 #include "content/public/browser/browser_plugin_guest_delegate.h"
6
7 namespace content {
8
9 WebContents* BrowserPluginGuestDelegate::CreateNewGuestWindow(
10 const WebContents::CreateParams& create_params) {
11 return NULL;
12 }
13
14 int BrowserPluginGuestDelegate::GetGuestInstanceID() const {
15 return 0;
16 }
17
18 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698