| Index: chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc b/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| index 33405ac08d334ce2c885a8b7383be6fa46e30fef..3256ec3718e2177880b5214f95ce4469886d7a94 100644
|
| --- a/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| @@ -76,7 +76,7 @@ class SimUnlockUIHTMLSource : public content::URLDataSource {
|
| SimUnlockUIHTMLSource();
|
|
|
| // content::URLDataSource implementation.
|
| - virtual std::string GetSource() OVERRIDE;
|
| + virtual std::string GetSource() const OVERRIDE;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| bool is_incognito,
|
| @@ -253,7 +253,7 @@ class SimUnlockHandler : public WebUIMessageHandler,
|
| SimUnlockUIHTMLSource::SimUnlockUIHTMLSource() {
|
| }
|
|
|
| -std::string SimUnlockUIHTMLSource::GetSource() {
|
| +std::string SimUnlockUIHTMLSource::GetSource() const {
|
| return chrome::kChromeUISimUnlockHost;
|
| }
|
|
|
|
|