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

Unified Diff: chrome/browser/chromeos/drive/file_write_helper.cc

Issue 11106007: drive: Rename 'gdata' namespace to 'drive' in chrome/browser/chromeos/drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 2 months 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/drive/file_write_helper.cc
diff --git a/chrome/browser/chromeos/drive/file_write_helper.cc b/chrome/browser/chromeos/drive/file_write_helper.cc
index 3a21a6590ebe6247896a1217532aeb2c19b372bd..a1a408095eaa3756e155d8934d2ba2af3622b5af 100644
--- a/chrome/browser/chromeos/drive/file_write_helper.cc
+++ b/chrome/browser/chromeos/drive/file_write_helper.cc
@@ -9,7 +9,7 @@
using content::BrowserThread;
-namespace gdata {
+namespace drive {
namespace {
@@ -56,7 +56,7 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterCreateFile(
DriveFileError error) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- if (error != gdata::DRIVE_FILE_OK) {
+ if (error != DRIVE_FILE_OK) {
if (!callback.is_null()) {
content::BrowserThread::GetBlockingPool()->PostTask(
FROM_HERE,
@@ -79,7 +79,7 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterOpenFile(
const FilePath& local_cache_path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- if (error != gdata::DRIVE_FILE_OK) {
+ if (error != DRIVE_FILE_OK) {
if (!callback.is_null()) {
content::BrowserThread::GetBlockingPool()->PostTask(
FROM_HERE,
@@ -107,4 +107,4 @@ void FileWriteHelper::PrepareWritableFileAndRunAfterCallback(
base::Bind(&EmitDebugLogForCloseFile, file_path));
}
-} // namespace gdata
+} // namespace drive
« no previous file with comments | « chrome/browser/chromeos/drive/file_write_helper.h ('k') | chrome/browser/chromeos/drive/file_write_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698