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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.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/chromeos/extensions/file_manager/private_api_file_system.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc
index 9d85a05296d8f19978892690b5dab084ddb3ba11..0d936f90c8f6d571d9538836870e58efe610b87d 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.cc
@@ -310,7 +310,7 @@ bool FileBrowserPrivateRequestFileSystemFunction::RunImpl() {
fileapi::FileSystemInfo info =
fileapi::GetFileSystemInfoForChromeOS(source_url_.GetOrigin());
- DictionaryValue* dict = new DictionaryValue();
+ base::DictionaryValue* dict = new base::DictionaryValue();
SetResult(dict);
dict->SetString("name", info.name);
dict->SetString("root_url", info.root_url.spec());
@@ -322,7 +322,7 @@ bool FileBrowserPrivateRequestFileSystemFunction::RunImpl() {
void FileWatchFunctionBase::Respond(bool success) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- SetResult(Value::CreateBooleanValue(success));
+ SetResult(base::Value::CreateBooleanValue(success));
SendResponse(success);
}
@@ -555,7 +555,7 @@ void FileBrowserPrivateStartCopyFunction::RunAfterStartCopy(
int operation_id) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- SetResult(Value::CreateIntegerValue(operation_id));
+ SetResult(base::Value::CreateIntegerValue(operation_id));
SendResponse(true);
}

Powered by Google App Engine
This is Rietveld 408576698