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

Unified Diff: content/test/test_web_contents.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
« no previous file with comments | « content/test/test_web_contents.h ('k') | content/test/test_web_contents_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_web_contents.cc
diff --git a/content/test/test_web_contents.cc b/content/test/test_web_contents.cc
index 4a4ad0494801707d7b252624e0ddfbd98ffd21ec..33332bdd87e192e3b14f26b9d86ffecba8d1b187 100644
--- a/content/test/test_web_contents.cc
+++ b/content/test/test_web_contents.cc
@@ -94,7 +94,7 @@ bool TestWebContents::CreateRenderViewForRenderManager(
RenderViewHost* render_view_host, int opener_route_id) {
// This will go to a TestRenderViewHost.
static_cast<RenderViewHostImpl*>(
- render_view_host)->CreateRenderView(string16(),
+ render_view_host)->CreateRenderView(base::string16(),
opener_route_id,
-1);
return true;
@@ -212,7 +212,7 @@ void TestWebContents::TestDidFailLoadWithError(
const GURL& url,
bool is_main_frame,
int error_code,
- const string16& error_description) {
+ const base::string16& error_description) {
ViewHostMsg_DidFailLoadWithError msg(
0, frame_id, url, is_main_frame, error_code, error_description);
OnMessageReceived(GetRenderViewHost(), msg);
« no previous file with comments | « content/test/test_web_contents.h ('k') | content/test/test_web_contents_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698