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

Unified Diff: chrome/browser/external_tab/external_tab_container_win.cc

Issue 9959051: Move ExternalTabContainer into a directory with an OWNERS file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing wstring. Beating a small red car with a branch. Created 8 years, 9 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/external_tab/external_tab_container_win.cc
diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab/external_tab_container_win.cc
similarity index 99%
rename from chrome/browser/external_tab_container_win.cc
rename to chrome/browser/external_tab/external_tab_container_win.cc
index db366f564b83bc5f05e3994400be7854b4623dd5..d76005913fd9cfc9842ff594cf1692403f42506f 100644
--- a/chrome/browser/external_tab_container_win.cc
+++ b/chrome/browser/external_tab/external_tab_container_win.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/external_tab_container_win.h"
+#include "chrome/browser/external_tab/external_tab_container_win.h"
#include <string>
@@ -12,6 +12,7 @@
#include "base/i18n/rtl.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
+#include "base/string16.h"
#include "base/utf_string_conversions.h"
#include "base/win/win_util.h"
#include "chrome/app/chrome_command_ids.h"
@@ -533,7 +534,7 @@ void ExternalTabContainer::UpdateTargetURL(WebContents* source,
const GURL& url) {
Browser::UpdateTargetURLHelper(source, page_id, url);
if (automation_) {
- std::wstring url_string = CA2W(url.spec().c_str());
+ string16 url_string = CA2W(url.spec().c_str());
automation_->Send(
new AutomationMsg_UpdateTargetUrl(tab_handle_, url_string));
}
« no previous file with comments | « chrome/browser/external_tab/external_tab_container_win.h ('k') | chrome/browser/external_tab_container_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698