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

Unified Diff: content/browser/tab_contents/tab_contents_observer.cc

Issue 8253002: Move PageTransition into content namespace. While I'm touching all these files, I've also updated... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/tab_contents/tab_contents_observer.cc
===================================================================
--- content/browser/tab_contents/tab_contents_observer.cc (revision 105162)
+++ content/browser/tab_contents/tab_contents_observer.cc (working copy)
@@ -43,7 +43,7 @@
int64 frame_id,
bool is_main_frame,
const GURL& url,
- PageTransition::Type transition_type) {
+ content::PageTransition transition_type) {
}
void TabContentsObserver::DidFailProvisionalLoad(
@@ -84,15 +84,16 @@
void TabContentsObserver::DidOpenURL(const GURL& url,
const GURL& referrer,
WindowOpenDisposition disposition,
- PageTransition::Type transition) {
+ content::PageTransition transition) {
}
-void TabContentsObserver::DidOpenRequestedURL(TabContents* new_contents,
- const GURL& url,
- const GURL& referrer,
- WindowOpenDisposition disposition,
- PageTransition::Type transition,
- int64 source_frame_id) {
+void TabContentsObserver::DidOpenRequestedURL(
+ TabContents* new_contents,
+ const GURL& url,
+ const GURL& referrer,
+ WindowOpenDisposition disposition,
+ content::PageTransition transition,
+ int64 source_frame_id) {
}
void TabContentsObserver::AppCacheAccessed(const GURL& manifest_url,
« no previous file with comments | « content/browser/tab_contents/tab_contents_observer.h ('k') | content/browser/tab_contents/test_tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698