| Index: chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| index 84846583f3a41a838b3ea9a1fae037ce7f14c745..4cf7d78f9c4434a6a8a610c3e68447bf10bdee55 100644
|
| --- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| @@ -125,7 +125,7 @@ class MobileSetupUIHTMLSource : public content::URLDataSource {
|
| MobileSetupUIHTMLSource();
|
|
|
| // content::URLDataSource implementation.
|
| - virtual std::string GetSource() OVERRIDE;
|
| + virtual std::string GetSource() const OVERRIDE;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| bool is_incognito,
|
| @@ -217,7 +217,7 @@ class MobileSetupHandler
|
| MobileSetupUIHTMLSource::MobileSetupUIHTMLSource() {
|
| }
|
|
|
| -std::string MobileSetupUIHTMLSource::GetSource() {
|
| +std::string MobileSetupUIHTMLSource::GetSource() const {
|
| return chrome::kChromeUIMobileSetupHost;
|
| }
|
|
|
|
|