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

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

Issue 2798503002: Extensions: Pull duplicated functionality into ExtensionsTest fixture. (Closed)
Patch Set: Add TODO for comments. Created 3 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
« no previous file with comments | « no previous file | content/public/test/test_browser_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_browser_context.h
diff --git a/content/public/test/test_browser_context.h b/content/public/test/test_browser_context.h
index 41af84b31d888ac9e399c7b0584fb46378383df0..397c7ee9954e2db6acf14bdf63048b8044118381 100644
--- a/content/public/test/test_browser_context.h
+++ b/content/public/test/test_browser_context.h
@@ -72,6 +72,19 @@ class TestBrowserContext : public BrowserContext {
DISALLOW_COPY_AND_ASSIGN(TestBrowserContext);
};
+// An incognito version of a TestBrowserContext.
+class TestBrowserContextIncognito : public TestBrowserContext {
+ public:
+ TestBrowserContextIncognito();
+ ~TestBrowserContextIncognito() override;
+
+ // TestBrowserContext implementation.
+ bool IsOffTheRecord() const override;
sky 2017/04/04 20:43:37 How about a setter on TestBrowserContext as if in
karandeepb 2017/04/04 23:03:16 Done.
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(TestBrowserContextIncognito);
+};
+
} // namespace content
#endif // CONTENT_PUBLIC_TEST_TEST_BROWSER_CONTEXT_H_
« no previous file with comments | « no previous file | content/public/test/test_browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698