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

Unified Diff: content/public/test/test_renderer_host.h

Issue 1086733002: Ensure tests have an active task runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 8 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/public/test/test_renderer_host.h
diff --git a/content/public/test/test_renderer_host.h b/content/public/test/test_renderer_host.h
index 029b70ed4db6223111a2340c0857e86315ea5a1b..e4eb93d4fd471a7919d16bdadf1edfcf9d097473 100644
--- a/content/public/test/test_renderer_host.h
+++ b/content/public/test/test_renderer_host.h
@@ -231,6 +231,9 @@ class RenderViewHostTestHarness : public testing::Test {
void SetRenderProcessHostFactory(RenderProcessHostFactory* factory);
private:
+ int thread_bundle_options_;
+ scoped_ptr<TestBrowserThreadBundle> thread_bundle_;
+
scoped_ptr<ContentBrowserSanityChecker> sanity_checker_;
scoped_ptr<BrowserContext> browser_context_;
@@ -244,9 +247,6 @@ class RenderViewHostTestHarness : public testing::Test {
#endif
RenderViewHostTestEnabler rvh_test_enabler_;
- int thread_bundle_options_;
- scoped_ptr<TestBrowserThreadBundle> thread_bundle_;
-
DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness);
};

Powered by Google App Engine
This is Rietveld 408576698