| 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);
|
| }
|
|
|