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

Unified Diff: chrome/renderer/extensions/cast_streaming_native_handler.cc

Issue 116543010: Remove the Value class names from the global namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes 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 | « chrome/browser/prefs/pref_hash_store_impl_unittest.cc ('k') | content/renderer/v8_value_converter_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/cast_streaming_native_handler.cc
diff --git a/chrome/renderer/extensions/cast_streaming_native_handler.cc b/chrome/renderer/extensions/cast_streaming_native_handler.cc
index a7532e87734851c7fb3e449e8aaedcb46dca647e..55d0a69eaacd47726a0bf4d3887eddb461c32500 100644
--- a/chrome/renderer/extensions/cast_streaming_native_handler.cc
+++ b/chrome/renderer/extensions/cast_streaming_native_handler.cc
@@ -262,7 +262,7 @@ void CastStreamingNativeHandler::StartCastRtpStream(
return;
scoped_ptr<V8ValueConverter> converter(V8ValueConverter::create());
- scoped_ptr<Value> params_value(
+ scoped_ptr<base::Value> params_value(
converter->FromV8Value(args[1], context()->v8_context()));
if (!params_value) {
args.GetIsolate()->ThrowException(v8::Exception::TypeError(
@@ -316,7 +316,7 @@ void CastStreamingNativeHandler::StartCastUdpTransport(
return;
scoped_ptr<V8ValueConverter> converter(V8ValueConverter::create());
- scoped_ptr<Value> udp_params_value(
+ scoped_ptr<base::Value> udp_params_value(
converter->FromV8Value(args[1], context()->v8_context()));
if (!udp_params_value) {
args.GetIsolate()->ThrowException(v8::Exception::TypeError(
« no previous file with comments | « chrome/browser/prefs/pref_hash_store_impl_unittest.cc ('k') | content/renderer/v8_value_converter_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698