| Index: chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/system_info_ui.cc b/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| index 5d8e7b998aa89bbeeb10c262c4ca6a9de347c1c5..05eb734377d9bd7d78fed78a426cf879713de9dd 100644
|
| --- a/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| @@ -48,7 +48,7 @@ class SystemInfoUIHTMLSource : public content::URLDataSource{
|
| SystemInfoUIHTMLSource();
|
|
|
| // content::URLDataSource implementation.
|
| - virtual std::string GetSource() OVERRIDE;
|
| + virtual std::string GetSource() const OVERRIDE;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| bool is_incognito,
|
| @@ -101,7 +101,7 @@ SystemInfoUIHTMLSource::SystemInfoUIHTMLSource()
|
| ALLOW_THIS_IN_INITIALIZER_LIST(weak_ptr_factory_(this)) {
|
| }
|
|
|
| -std::string SystemInfoUIHTMLSource::GetSource() {
|
| +std::string SystemInfoUIHTMLSource::GetSource() const {
|
| return chrome::kChromeUISystemInfoHost;
|
| }
|
|
|
|
|