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

Side by Side Diff: content/browser/frame_host/navigator_delegate.h

Issue 187843005: Remove stale frame ID references for RequestTransferURL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove incorrect check. Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
7 7
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "content/public/browser/invalidate_type.h" 9 #include "content/public/browser/invalidate_type.h"
10 #include "content/public/browser/navigation_controller.h" 10 #include "content/public/browser/navigation_controller.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 // Notifies the Navigator embedder that a navigation to pending 88 // Notifies the Navigator embedder that a navigation to pending
89 // NavigationEntry has started in the browser process. 89 // NavigationEntry has started in the browser process.
90 virtual void DidStartNavigationToPendingEntry( 90 virtual void DidStartNavigationToPendingEntry(
91 RenderFrameHostImpl* render_frame_host, 91 RenderFrameHostImpl* render_frame_host,
92 const GURL& url, 92 const GURL& url,
93 NavigationController::ReloadType reload_type) {} 93 NavigationController::ReloadType reload_type) {}
94 94
95 // Opens a URL with the given parameters. See PageNavigator::OpenURL, which 95 // Opens a URL with the given parameters. See PageNavigator::OpenURL, which
96 // this forwards to. 96 // this forwards to.
97 virtual void RequestOpenURL(const OpenURLParams& params) {} 97 virtual void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
nasko 2014/03/06 04:59:52 D'oh! I should've added this when I moved it ... T
98 const OpenURLParams& params) {}
98 }; 99 };
99 100
100 } // namspace content 101 } // namspace content
101 102
102 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 103 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698