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

Unified Diff: chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.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/itunes_data_provider_browsertest.cc
diff --git a/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc b/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
index b716a9b1465287eb0d29245d81d5c91b09b5b315..968204435c5d32c67f481308fc633556529da57c 100644
--- a/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
+++ b/chrome/browser/media_galleries/fileapi/itunes_data_provider_browsertest.cc
@@ -22,8 +22,6 @@
#include "content/public/browser/browser_thread.h"
#include "url/gurl.h"
-using chrome::MediaFileSystemBackend;
-
namespace itunes {
namespace {
@@ -76,7 +74,7 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
// GetInstance() first. It shouldn't matter what thread creates, however
// in practice it is always created on the UI thread, so this calls
// GetInstance here to mirror those real conditions.
- chrome::ImportedMediaGalleryRegistry::GetInstance();
+ ImportedMediaGalleryRegistry::GetInstance();
InProcessBrowserTest::SetUp();
}
@@ -103,7 +101,7 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
}
ITunesDataProvider* data_provider() const {
- return chrome::ImportedMediaGalleryRegistry::ITunesDataProvider();
+ return ImportedMediaGalleryRegistry::ITunesDataProvider();
}
const base::FilePath& library_dir() const {
@@ -142,8 +140,8 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
void TestDone() {
DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread());
- chrome::ImportedMediaGalleryRegistry* imported_registry =
- chrome::ImportedMediaGalleryRegistry::GetInstance();
+ ImportedMediaGalleryRegistry* imported_registry =
+ ImportedMediaGalleryRegistry::GetInstance();
imported_registry->itunes_data_provider_.reset();
content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
quit_closure_);
@@ -152,8 +150,8 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
private:
void StartTestOnMediaTaskRunner() {
DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread());
- chrome::ImportedMediaGalleryRegistry* imported_registry =
- chrome::ImportedMediaGalleryRegistry::GetInstance();
+ ImportedMediaGalleryRegistry* imported_registry =
+ ImportedMediaGalleryRegistry::GetInstance();
imported_registry->itunes_data_provider_.reset(
new TestITunesDataProvider(
XmlFile(),

Powered by Google App Engine
This is Rietveld 408576698