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

Unified Diff: chrome/browser/chromeos/drive/stale_cache_files_remover.h

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: 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/stale_cache_files_remover.h
diff --git a/chrome/browser/chromeos/drive/stale_cache_files_remover.h b/chrome/browser/chromeos/drive/stale_cache_files_remover.h
index a91ef0b1f5bba63120da8488ef4bb2a9eccb0649..71ecfc5c08bba5f2e3d45df242f870f6a8a17879 100644
--- a/chrome/browser/chromeos/drive/stale_cache_files_remover.h
+++ b/chrome/browser/chromeos/drive/stale_cache_files_remover.h
@@ -14,7 +14,7 @@
#include "chrome/browser/chromeos/drive/drive_file_system_observer.h"
#include "chrome/browser/google_apis/gdata_errorcode.h"
-namespace gdata{
+namespace drive{
class DriveCache;
class DriveCacheEntry;
@@ -44,7 +44,7 @@ class StaleCacheFilesRemover : public DriveFileSystemObserver {
void GetEntryInfoAndRemoveCacheIfNecessary(
const std::string& resource_id,
bool success,
- const gdata::DriveCacheEntry& cache_entry);
+ const DriveCacheEntry& cache_entry);
// Check the cache file and removes if it is unavailable or invalid (eg. md5
// mismatch). This is called from GetCacheEntryAndRemoveCacheIfNecessary();
@@ -53,7 +53,7 @@ class StaleCacheFilesRemover : public DriveFileSystemObserver {
const std::string& cache_md5,
DriveFileError error,
const FilePath& drive_file_path,
- scoped_ptr<gdata::DriveEntryProto> entry_proto);
+ scoped_ptr<drive::DriveEntryProto> entry_proto);
hashimoto 2012/10/12 04:57:46 nit: No need to have 'drive::'?
satorux1 2012/10/12 05:32:56 Done.
DriveCache* cache_; // Not owned.
DriveFileSystemInterface* file_system_; // Not owned.
@@ -64,6 +64,6 @@ class StaleCacheFilesRemover : public DriveFileSystemObserver {
DISALLOW_COPY_AND_ASSIGN(StaleCacheFilesRemover);
};
-} // namespace gdata
+} // namespace drive
#endif // CHROME_BROWSER_CHROMEOS_DRIVE_STALE_CACHE_FILES_REMOVER_H_

Powered by Google App Engine
This is Rietveld 408576698