diff options
Diffstat (limited to 'chrome/browser/dom_ui/options/options_ui.cc')
-rw-r--r-- | chrome/browser/dom_ui/options/options_ui.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/dom_ui/options/options_ui.cc b/chrome/browser/dom_ui/options/options_ui.cc index 4d4cc48..3b79465 100644 --- a/chrome/browser/dom_ui/options/options_ui.cc +++ b/chrome/browser/dom_ui/options/options_ui.cc @@ -85,6 +85,8 @@ OptionsUIHTMLSource::OptionsUIHTMLSource(DictionaryValue* localized_strings) localized_strings_.reset(localized_strings); } +OptionsUIHTMLSource::~OptionsUIHTMLSource() {} + void OptionsUIHTMLSource::StartDataRequest(const std::string& path, bool is_off_the_record, int request_id) { @@ -103,6 +105,10 @@ void OptionsUIHTMLSource::StartDataRequest(const std::string& path, SendResponse(request_id, html_bytes); } +std::string OptionsUIHTMLSource::GetMimeType(const std::string&) const { + return "text/html"; +} + //////////////////////////////////////////////////////////////////////////////// // // OptionsPageUIHandler |