| 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(),
 | 
| 
 |