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

Unified Diff: content/browser/download/download_manager_impl_unittest.cc

Issue 10492009: Move test headers from content\test to content\public\test. This way we can enforce that internal c… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 7 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: content/browser/download/download_manager_impl_unittest.cc
===================================================================
--- content/browser/download/download_manager_impl_unittest.cc (revision 140250)
+++ content/browser/download/download_manager_impl_unittest.cc (working copy)
@@ -28,7 +28,7 @@
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager_delegate.h"
#include "content/public/test/mock_download_manager.h"
-#include "content/test/test_browser_context.h"
+#include "content/public/test/test_browser_context.h"
#include "content/test/test_browser_thread.h"
#include "net/base/io_buffer.h"
#include "net/base/net_util.h"
@@ -256,7 +256,7 @@
static const size_t kTestDataLen;
DownloadManagerTest()
- : browser_context(new TestBrowserContext()),
+ : browser_context(new content::TestBrowserContext()),
download_manager_delegate_(new TestDownloadManagerDelegate()),
download_manager_(new DownloadManagerImpl(
download_manager_delegate_.get(), NULL)),
@@ -349,7 +349,7 @@
}
protected:
- scoped_ptr<TestBrowserContext> browser_context;
+ scoped_ptr<content::TestBrowserContext> browser_context;
scoped_ptr<TestDownloadManagerDelegate> download_manager_delegate_;
scoped_refptr<DownloadManagerImpl> download_manager_;
scoped_refptr<DownloadFileManager> file_manager_;

Powered by Google App Engine
This is Rietveld 408576698