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

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

Issue 14039004: Add int params to URLDataSource::StartDataRequest(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/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..1ff876f59cefd3df1aa103479154466d8ecf47ba 100644
--- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
@@ -128,7 +128,7 @@ class MobileSetupUIHTMLSource : public content::URLDataSource {
virtual std::string GetSource() OVERRIDE;
virtual void StartDataRequest(
const std::string& path,
- bool is_incognito,
+ const content::URLDataSource::ExtraRequestInfo& info,
const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
virtual std::string GetMimeType(const std::string&) const OVERRIDE {
return "text/html";
@@ -223,7 +223,7 @@ std::string MobileSetupUIHTMLSource::GetSource() {
void MobileSetupUIHTMLSource::StartDataRequest(
const std::string& path,
- bool is_incognito,
+ const content::URLDataSource::ExtraRequestInfo& info,
const content::URLDataSource::GotDataCallback& callback) {
CellularNetwork* network = NULL;
if (!path.empty()) {

Powered by Google App Engine
This is Rietveld 408576698