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

Unified Diff: ios/web/shell/shell_browser_state.mm

Issue 1149323004: Upstream the iOS web_shell and supporting code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@web-thread-impl
Patch Set: Address review comments Created 5 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
« no previous file with comments | « ios/web/shell/shell_browser_state.h ('k') | ios/web/shell/shell_main_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/shell/shell_browser_state.mm
diff --git a/ios/web/shell/shell_browser_state.mm b/ios/web/shell/shell_browser_state.mm
new file mode 100644
index 0000000000000000000000000000000000000000..4702b1b55e502e9301442ef54ed884ecf0891f59
--- /dev/null
+++ b/ios/web/shell/shell_browser_state.mm
@@ -0,0 +1,43 @@
+// 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.
+
+#include "ios/web/shell/shell_browser_state.h"
+
+#include "base/base_paths.h"
+#include "base/files/file_path.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/message_loop/message_loop.h"
+#include "base/path_service.h"
+#include "base/threading/thread_restrictions.h"
+#include "ios/web/public/web_thread.h"
+#include "ios/web/shell/shell_url_request_context_getter.h"
+
+namespace web {
+
+ShellBrowserState::ShellBrowserState() : BrowserState() {
+ CHECK(PathService::Get(base::DIR_APP_DATA, &path_));
+
+ request_context_getter_ = new ShellURLRequestContextGetter(
+ GetStatePath(),
+ web::WebThread::GetMessageLoopProxyForThread(web::WebThread::IO),
+ web::WebThread::GetMessageLoopProxyForThread(web::WebThread::FILE),
+ web::WebThread::GetMessageLoopProxyForThread(web::WebThread::CACHE));
+}
+
+ShellBrowserState::~ShellBrowserState() {
+}
+
+bool ShellBrowserState::IsOffTheRecord() const {
+ return false;
+}
+
+base::FilePath ShellBrowserState::GetStatePath() const {
+ return path_;
+}
+
+net::URLRequestContextGetter* ShellBrowserState::GetRequestContext() {
+ return request_context_getter_.get();
+}
+
+} // namespace web
« no previous file with comments | « ios/web/shell/shell_browser_state.h ('k') | ios/web/shell/shell_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698