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

Unified Diff: ios/web/webui/url_data_source_ios.cc

Issue 1110213002: Upstream most of the iOS WebUI support in ios/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: ios/web/webui/url_data_source_ios.cc
diff --git a/ios/web/webui/url_data_source_ios.cc b/ios/web/webui/url_data_source_ios.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3a1e8208dfbe761d436ef60a28a9ef828ad86753
--- /dev/null
+++ b/ios/web/webui/url_data_source_ios.cc
@@ -0,0 +1,41 @@
+// 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/public/url_data_source_ios.h"
+
+#include "ios/web/public/web_client.h"
+#include "ios/web/webui/url_data_manager_ios.h"
+#include "net/url_request/url_request.h"
+
+namespace web {
+
+void URLDataSourceIOS::Add(BrowserState* browser_state,
+ URLDataSourceIOS* source) {
+ URLDataManagerIOS::AddDataSource(browser_state, source);
+}
+
+bool URLDataSourceIOS::ShouldReplaceExistingSource() const {
+ return true;
+}
+
+bool URLDataSourceIOS::AllowCaching() const {
+ return true;
+}
+
+std::string URLDataSourceIOS::GetContentSecurityPolicyObjectSrc() const {
+ return "object-src 'none';";
+}
+
+bool URLDataSourceIOS::ShouldDenyXFrameOptions() const {
+ return true;
+}
+
+bool URLDataSourceIOS::ShouldServiceRequest(
+ const net::URLRequest* request) const {
+ if (GetWebClient()->IsAppSpecificURL(request->url()))
Eugene But (OOO till 7-30) 2015/04/28 20:23:01 NIT: return GetWebClient()->IsAppSpecificURL(requ
+ return true;
+ return false;
+}
+
+} // namespace web

Powered by Google App Engine
This is Rietveld 408576698