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

Unified Diff: chrome/browser/media_gallery/linux/mtp_device_operations_utils.cc

Issue 11744014: [Media Gallery] Move chrome/browser/media_transfer_protocol code to src/device. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix gclient runhooks error Created 7 years, 12 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_gallery/linux/mtp_device_operations_utils.cc
diff --git a/chrome/browser/media_gallery/linux/mtp_device_operations_utils.cc b/chrome/browser/media_gallery/linux/mtp_device_operations_utils.cc
index c92dda0bcd77d28f8fa88eef43177d35765ca101..2a412bc59912d35642f4336dbee3c45ca073b489 100644
--- a/chrome/browser/media_gallery/linux/mtp_device_operations_utils.cc
+++ b/chrome/browser/media_gallery/linux/mtp_device_operations_utils.cc
@@ -4,14 +4,14 @@
#include "chrome/browser/media_gallery/linux/mtp_device_operations_utils.h"
-#include "chrome/browser/media_transfer_protocol/media_transfer_protocol_manager.h"
+#include "device/media_transfer_protocol/media_transfer_protocol_manager.h"
namespace chrome {
// Returns MediaTransferProtocolManager instance on success or NULL on failure.
-MediaTransferProtocolManager* GetMediaTransferProtocolManager() {
- MediaTransferProtocolManager* mtp_device_mgr =
- MediaTransferProtocolManager::GetInstance();
+device::MediaTransferProtocolManager* GetMediaTransferProtocolManager() {
+ device::MediaTransferProtocolManager* mtp_device_mgr =
+ device::MediaTransferProtocolManager::GetInstance();
DCHECK(mtp_device_mgr);
return mtp_device_mgr;
}

Powered by Google App Engine
This is Rietveld 408576698