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

Unified Diff: chrome/browser/media_galleries/media_file_system_registry_unittest.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/media_file_system_registry_unittest.cc
diff --git a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
index ce95d3e4a1df4b89c59eee63b5daf278a4010dd1..a4f632975c4e314ec5008237c838a34336925fdd 100644
--- a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
+++ b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
@@ -56,8 +56,6 @@
using content::BrowserThread;
-namespace chrome {
-
// Not anonymous so it can be friends with MediaFileSystemRegistry.
class TestMediaFileSystemContext : public MediaFileSystemContext {
public:
@@ -745,7 +743,7 @@ size_t MediaFileSystemRegistryTest::GetExtensionGalleriesHostCount(
void MediaFileSystemRegistryTest::SetUp() {
ChromeRenderViewHostTestHarness::SetUp();
- ASSERT_TRUE(test::TestStorageMonitor::CreateAndInstall());
+ ASSERT_TRUE(TestStorageMonitor::CreateAndInstall());
DeleteContents();
SetRenderProcessHostFactory(&rph_factory_);
@@ -770,7 +768,7 @@ void MediaFileSystemRegistryTest::TearDown() {
MediaFileSystemRegistry* registry =
g_browser_process->media_file_system_registry();
EXPECT_EQ(0U, GetExtensionGalleriesHostCount(registry));
- test::TestStorageMonitor::RemoveSingleton();
+ TestStorageMonitor::RemoveSingleton();
#if defined(OS_CHROMEOS)
test_user_manager_.reset();
#endif
@@ -1030,5 +1028,3 @@ TEST_F(MediaFileSystemRegistryTest, TestNameConstruction) {
profile_state->CheckGalleries("names", one_expectation, one_expectation);
}
}
-
-} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698