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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit.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: chrome/browser/autocomplete/autocomplete_edit.h
===================================================================
--- chrome/browser/autocomplete/autocomplete_edit.h (revision 105162)
+++ chrome/browser/autocomplete/autocomplete_edit.h (working copy)
@@ -12,7 +12,7 @@
#include "chrome/browser/autocomplete/autocomplete_match.h"
#include "chrome/browser/autocomplete/network_action_predictor.h"
#include "chrome/common/instant_types.h"
-#include "content/common/page_transition_types.h"
+#include "content/public/common/page_transition_types.h"
#include "googleurl/src/gurl.h"
#include "ui/gfx/native_widget_types.h"
#include "webkit/glue/window_open_disposition.h"
@@ -49,7 +49,7 @@
// AutocompleteResult::GetAlternateNavURL().
virtual void OnAutocompleteAccept(const GURL& url,
WindowOpenDisposition disposition,
- PageTransition::Type transition,
+ content::PageTransition transition,
const GURL& alternate_nav_url) = 0;
// Called when anything has changed that might affect the layout or contents
@@ -234,7 +234,7 @@
// Returns true if this is a paste-and-search rather than paste-and-go (or
// nothing).
bool is_paste_and_search() const {
- return (paste_and_go_match_.transition != PageTransition::TYPED);
+ return (paste_and_go_match_.transition != content::PAGE_TRANSITION_TYPED);
}
// Asks the browser to load the popup's currently selected item, using the
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_browsertest.cc ('k') | chrome/browser/autocomplete/autocomplete_edit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698