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

Unified Diff: chrome/browser/automation/automation_provider.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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
Index: chrome/browser/automation/automation_provider.cc
diff --git a/chrome/browser/automation/automation_provider.cc b/chrome/browser/automation/automation_provider.cc
index 05df4a5c7e74ea1f956ebd3cd56142f1ef8f5333..5872ec94180ebb7c58ac26b20c605405eb05218b 100644
--- a/chrome/browser/automation/automation_provider.cc
+++ b/chrome/browser/automation/automation_provider.cc
@@ -217,7 +217,7 @@ int AutomationProvider::GetIndexForNavigationController(
}
// TODO(phajdan.jr): move to TestingAutomationProvider.
-DictionaryValue* AutomationProvider::GetDictionaryFromDownloadItem(
+base::DictionaryValue* AutomationProvider::GetDictionaryFromDownloadItem(
const DownloadItem* download, bool incognito) {
const char *download_state_string = NULL;
switch (download->GetState()) {
@@ -280,7 +280,7 @@ DictionaryValue* AutomationProvider::GetDictionaryFromDownloadItem(
if (!download_danger_type_string)
download_danger_type_string = "UNKNOWN";
- DictionaryValue* dl_item_value = new DictionaryValue;
+ base::DictionaryValue* dl_item_value = new base::DictionaryValue;
dl_item_value->SetInteger("id", static_cast<int>(download->GetId()));
dl_item_value->SetString("url", download->GetURL().spec());
dl_item_value->SetString("referrer_url", download->GetReferrerUrl().spec());
« no previous file with comments | « chrome/browser/automation/automation_event_queue.cc ('k') | chrome/browser/automation/automation_provider_json.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698