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

Unified Diff: content/test/browser_test_base.cc

Issue 8387039: Move content_restriction.h and main_function_params.h to content/public/common, and put them in t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
« no previous file with comments | « content/shell/shell_main_delegate.cc ('k') | content/test/render_view_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/browser_test_base.cc
===================================================================
--- content/test/browser_test_base.cc (revision 107906)
+++ content/test/browser_test_base.cc (working copy)
@@ -6,7 +6,7 @@
#include "base/command_line.h"
#include "base/task.h"
-#include "content/common/main_function_params.h"
+#include "content/public/common/main_function_params.h"
#include "sandbox/src/dep.h"
#if defined(OS_MACOSX)
@@ -14,7 +14,7 @@
#include "base/system_monitor/system_monitor.h"
#endif
-extern int BrowserMain(const MainFunctionParams&);
+extern int BrowserMain(const content::MainFunctionParams&);
BrowserTestBase::BrowserTestBase() {
#if defined(OS_MACOSX)
@@ -27,7 +27,7 @@
}
void BrowserTestBase::SetUp() {
- MainFunctionParams params(*CommandLine::ForCurrentProcess());
+ content::MainFunctionParams params(*CommandLine::ForCurrentProcess());
params.ui_task =
NewRunnableMethod(this, &BrowserTestBase::ProxyRunTestOnMainThreadLoop);
« no previous file with comments | « content/shell/shell_main_delegate.cc ('k') | content/test/render_view_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698