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

Unified Diff: chrome/test/v8_unit_test.cc

Issue 193072: Move StringPiece into the base namespace. It is colliding (Closed)
Patch Set: take 2 Created 11 years, 3 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
« no previous file with comments | « chrome/test/v8_unit_test.h ('k') | chrome/tools/mac_helpers/infoplist_strings_util.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/v8_unit_test.cc
diff --git a/chrome/test/v8_unit_test.cc b/chrome/test/v8_unit_test.cc
index 43db5f104e734f42ffbaa41d194ad5756d351fa2..4b94ad904d556296eb646f583c650752aa0e5a6a 100644
--- a/chrome/test/v8_unit_test.cc
+++ b/chrome/test/v8_unit_test.cc
@@ -14,8 +14,8 @@ void V8UnitTest::SetUp() {
context_ = v8::Context::New(NULL, global);
}
-void V8UnitTest::ExecuteScriptInContext(const StringPiece& script_source,
- const StringPiece& script_name) {
+void V8UnitTest::ExecuteScriptInContext(const base::StringPiece& script_source,
+ const base::StringPiece& script_name) {
v8::Context::Scope context_scope(context_);
v8::HandleScope handle_scope;
v8::Handle<v8::String> source = v8::String::New(script_source.data(),
« no previous file with comments | « chrome/test/v8_unit_test.h ('k') | chrome/tools/mac_helpers/infoplist_strings_util.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698