blob: 96a2030c4df690d06a4b61a88008256684c071cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// Copyright (c) 2013 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 "content/public/browser/url_data_source.h"
#include "content/browser/webui/url_data_manager.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/url_constants.h"
#include "net/url_request/url_request.h"
namespace content {
void URLDataSource::Add(BrowserContext* browser_context,
URLDataSource* source) {
URLDataManager::AddDataSource(browser_context, source);
}
base::MessageLoop* URLDataSource::MessageLoopForRequestPath(
const std::string& path) const {
return BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::UI);
}
bool URLDataSource::ShouldReplaceExistingSource() const {
return true;
}
bool URLDataSource::AllowCaching() const {
return true;
}
bool URLDataSource::ShouldAddContentSecurityPolicy() const {
return true;
}
std::string URLDataSource::GetContentSecurityPolicyObjectSrc() const {
return "object-src 'none';";
}
std::string URLDataSource::GetContentSecurityPolicyFrameSrc() const {
return "frame-src 'none';";
}
bool URLDataSource::ShouldDenyXFrameOptions() const {
return true;
}
bool URLDataSource::ShouldServiceRequest(const net::URLRequest* request) const {
if (request->url().SchemeIs(chrome::kChromeDevToolsScheme) ||
request->url().SchemeIs(kChromeUIScheme))
return true;
return false;
}
bool URLDataSource::ShouldServeMimeTypeAsContentTypeHeader() const {
return false;
}
} // namespace content
|