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

Unified Diff: content/browser/frame_host/navigation_controller_impl.cc

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/frame_host/navigation_controller_impl.cc
diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc
index 0c6f803cb8fe0fc0fadfdc817aa39543f603e33a..a49a9323fab50297a8f70f8430c0e942d2e9e42a 100644
--- a/content/browser/frame_host/navigation_controller_impl.cc
+++ b/content/browser/frame_host/navigation_controller_impl.cc
@@ -163,7 +163,7 @@ NavigationEntry* NavigationController::CreateNavigationEntry(
-1,
loaded_url,
referrer,
- string16(),
+ base::string16(),
transition,
is_renderer_initiated);
entry->SetVirtualURL(url);
@@ -354,7 +354,7 @@ void NavigationControllerImpl::ReloadInternal(bool check_for_repost,
// meanwhile, so we need to revert to the default title upon reload and
// invalidate the previously cached title (SetTitle will do both).
// See Chromium issue 96041.
- pending_entry_->SetTitle(string16());
+ pending_entry_->SetTitle(base::string16());
pending_entry_->SetTransitionType(PAGE_TRANSITION_RELOAD);
}

Powered by Google App Engine
This is Rietveld 408576698