Update uses of Value in android_webview, apps, ash, cc to use the base:: namespace.

BUG=88666
TEST=no change
[email protected]

Review URL: https://codereview.chromium.org/118293005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242292 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/cc/test/layer_tree_json_parser.cc b/cc/test/layer_tree_json_parser.cc
index d120067..e7f3e9bf 100644
--- a/cc/test/layer_tree_json_parser.cc
+++ b/cc/test/layer_tree_json_parser.cc
@@ -19,12 +19,12 @@
 
 scoped_refptr<Layer> ParseTreeFromValue(base::Value* val,
                                         ContentLayerClient* content_client) {
-  DictionaryValue* dict;
+  base::DictionaryValue* dict;
   bool success = true;
   success &= val->GetAsDictionary(&dict);
   std::string layer_type;
   success &= dict->GetString("LayerType", &layer_type);
-  ListValue* list;
+  base::ListValue* list;
   success &= dict->GetList("Bounds", &list);
   int width, height;
   success &= list->GetInteger(0, &width);
@@ -50,7 +50,7 @@
     success &= list->GetInteger(2, &aperture_width);
     success &= list->GetInteger(3, &aperture_height);
 
-    ListValue* bounds;
+    base::ListValue* bounds;
     success &= dict->GetList("ImageBounds", &bounds);
     double image_width, image_height;
     success &= bounds->GetDouble(0, &image_width);
@@ -132,7 +132,7 @@
   new_layer->SetTransform(layer_transform);
 
   success &= dict->GetList("Children", &list);
-  for (ListValue::const_iterator it = list->begin();
+  for (base::ListValue::const_iterator it = list->begin();
        it != list->end(); ++it) {
     new_layer->AddChild(ParseTreeFromValue(*it, content_client));
   }