Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5721)

Unified Diff: chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc

Issue 13945023: Make URLDataSource::GetSource() const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: And another one. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc ('k') | chrome/browser/ui/webui/chromeos/system_info_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698