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

Unified Diff: chrome/browser/media_galleries/fileapi/picasa_finder.cc

Issue 23727009: Cleanup: Remove chrome namespace for storage monitor and media galleries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 years, 3 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/media_galleries/fileapi/picasa_finder.cc
diff --git a/chrome/browser/media_galleries/fileapi/picasa_finder.cc b/chrome/browser/media_galleries/fileapi/picasa_finder.cc
index 364b6c678183bb2dbf6a5f30296239193c1dcdda..86b4e12599bded872266e7ee7ac6e550588fe6de 100644
--- a/chrome/browser/media_galleries/fileapi/picasa_finder.cc
+++ b/chrome/browser/media_galleries/fileapi/picasa_finder.cc
@@ -47,9 +47,8 @@ base::FilePath FindPicasaDatabaseOnFileThread() {
void FinishOnOriginalThread(const PicasaFinder::DeviceIDCallback& callback,
const base::FilePath& database_path) {
if (!database_path.empty())
- callback.Run(chrome::StorageInfo::MakeDeviceId(
- chrome::StorageInfo::PICASA,
- database_path.AsUTF8Unsafe()));
+ callback.Run(StorageInfo::MakeDeviceId(StorageInfo::PICASA,
+ database_path.AsUTF8Unsafe()));
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698