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

Unified Diff: ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_context.h

Issue 1664823003: Upstream ChromeBrowserState sub-classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 10 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: ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_context.h
diff --git a/ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_context.h b/ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_context.h
new file mode 100644
index 0000000000000000000000000000000000000000..6978910e4edbb2229981ea3aa6d7fe37c06b5253
--- /dev/null
+++ b/ios/chrome/browser/browser_state/test_chrome_browser_state_isolated_context.h
@@ -0,0 +1,36 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef IOS_CHROME_BROWSER_BROWSER_STATE_TEST_CHROME_BROWSER_STATE_ISOLATED_CONTEXT_H_
+#define IOS_CHROME_BROWSER_BROWSER_STATE_TEST_CHROME_BROWSER_STATE_ISOLATED_CONTEXT_H_
+
+#include "base/macros.h"
+#include "ios/chrome/browser/browser_state/test_chrome_browser_state.h"
+#import "ios/public/provider/chrome/browser/ui/default_ios_web_view_factory.h"
+
+// A TestChromeBrowserState with an isolated URLRequestContext.
+class TestChromeBrowserStateWithIsolatedContext
+ : public TestChromeBrowserState {
+ public:
+ TestChromeBrowserStateWithIsolatedContext();
+ ~TestChromeBrowserStateWithIsolatedContext() override;
+
+ bool MainContextCalled() const;
+ IOSWebViewFactoryExternalService SharingService();
+
+ static scoped_ptr<TestChromeBrowserStateWithIsolatedContext> Build();
+
+ // ChromeBrowserState:
+ net::URLRequestContextGetter* GetRequestContext() override;
+ net::URLRequestContextGetter* CreateIsolatedRequestContext(
+ const base::FilePath& partition_path) override;
+
+ private:
+ bool main_context_called_;
+ scoped_refptr<net::URLRequestContextGetter> request_context_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestChromeBrowserStateWithIsolatedContext);
+};
+
+#endif // IOS_CHROME_BROWSER_BROWSER_STATE_TEST_CHROME_BROWSER_STATE_ISOLATED_CONTEXT_H_

Powered by Google App Engine
This is Rietveld 408576698