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

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

Issue 18344013: fileapi: Rename FileSystemMountProvider to FileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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/safe_itunes_library_parser.cc
diff --git a/chrome/browser/media_galleries/fileapi/safe_itunes_library_parser.cc b/chrome/browser/media_galleries/fileapi/safe_itunes_library_parser.cc
index 19353363ffdd1c7bad4e851b00388de55b6fd1d0..0ae9ef49a44c34fef75ef6463a4cea4c1f9009b1 100644
--- a/chrome/browser/media_galleries/fileapi/safe_itunes_library_parser.cc
+++ b/chrome/browser/media_galleries/fileapi/safe_itunes_library_parser.cc
@@ -4,13 +4,13 @@
#include "chrome/browser/media_galleries/fileapi/safe_itunes_library_parser.h"
-#include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.h"
+#include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
#include "chrome/common/chrome_utility_messages.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/child_process_data.h"
#include "ipc/ipc_platform_file.h"
-using chrome::MediaFileSystemMountPointProvider;
+using chrome::MediaFileSystemBackend;
using content::BrowserThread;
using content::UtilityProcessHost;
@@ -24,7 +24,7 @@ SafeITunesLibraryParser::SafeITunesLibraryParser(
parser_state_(INITIAL_STATE) {}
void SafeITunesLibraryParser::Start() {
- DCHECK(MediaFileSystemMountPointProvider::CurrentlyOnMediaTaskRunnerThread());
+ DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread());
// |itunes_library_platform_file_| will be closed on the IO thread once it
// has been handed off to the child process.
@@ -87,7 +87,7 @@ void SafeITunesLibraryParser::OnGotITunesLibrary(
if (parser_state_ != STARTED_PARSING_STATE)
return;
- MediaFileSystemMountPointProvider::MediaTaskRunner()->PostTask(
+ MediaFileSystemBackend::MediaTaskRunner()->PostTask(
FROM_HERE,
base::Bind(callback_, result, library));
parser_state_ = FINISHED_PARSING_STATE;

Powered by Google App Engine
This is Rietveld 408576698