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

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

Issue 45453002: Remove remaining WebContentsImpl from InterstitialPageImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed GetWebkitPrefs and rebased on ToT. Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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/interstitial_page.h"
6
7 #include "content/browser/web_contents/interstitial_page_impl.h"
8 #include "content/browser/web_contents/web_contents_impl.h"
9
10 namespace content {
11
12 InterstitialPage* InterstitialPage::Create(WebContents* web_contents,
13 bool new_navigation,
14 const GURL& url,
15 InterstitialPageDelegate* delegate) {
16 return new InterstitialPageImpl(
17 web_contents,
18 static_cast<RenderWidgetHostDelegate*>(
19 static_cast<WebContentsImpl*>(web_contents)),
20 new_navigation, url, delegate);
21 }
22
23 } // namespace content
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698