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

Unified Diff: content/browser/load_notification_details.h

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/load_notification_details.h
===================================================================
--- content/browser/load_notification_details.h (revision 105162)
+++ content/browser/load_notification_details.h (working copy)
@@ -13,13 +13,13 @@
#include "base/basictypes.h"
#include "base/time.h"
#include "content/browser/tab_contents/navigation_controller.h"
-#include "content/common/page_transition_types.h"
+#include "content/public/common/page_transition_types.h"
#include "googleurl/src/gurl.h"
class LoadNotificationDetails {
public:
LoadNotificationDetails(const GURL& url,
- PageTransition::Type origin,
+ content::PageTransition origin,
base::TimeDelta load_time,
NavigationController* controller,
int session_index)
@@ -32,7 +32,7 @@
~LoadNotificationDetails() {}
const GURL& url() const { return url_; }
- PageTransition::Type origin() const { return origin_; }
+ content::PageTransition origin() const { return origin_; }
base::TimeDelta load_time() const { return load_time_; }
int session_index() const { return session_index_; }
NavigationController* controller() const { return controller_; }
@@ -48,7 +48,7 @@
int session_index_;
// The type of action that caused the load.
- PageTransition::Type origin_;
+ content::PageTransition origin_;
// The NavigationController for the load.
NavigationController* controller_;
« no previous file with comments | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698