Index: content/public/browser/url_data_source.cc |
diff --git a/content/public/browser/url_data_source.cc b/content/public/browser/url_data_source.cc |
index 148e62ab229cef35787713f65b0a8a7918643c02..2fbcd5c3a041ab4299c88096fc738fab582186b1 100644 |
--- a/content/public/browser/url_data_source.cc |
+++ b/content/public/browser/url_data_source.cc |
@@ -56,4 +56,9 @@ bool URLDataSource::ShouldServeMimeTypeAsContentTypeHeader() const { |
return false; |
} |
+std::string URLDataSource::GetAccessControlAllowOriginHeaderForOrigin( |
+ const std::string& origin) const { |
+ return ""; |
Tom Sepez
2014/10/03 17:02:45
nit: I thought the preferred way of returning an
dzhioev (left Google)
2014/10/03 19:55:07
Right. Done.
|
+} |
+ |
} // namespace content |