| 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 4cf7d78f9c4434a6a8a610c3e68447bf10bdee55..d50a05781005d9bbe562e2daa892f9e6d647503f 100644
|
| --- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| @@ -128,7 +128,8 @@ class MobileSetupUIHTMLSource : public content::URLDataSource {
|
| virtual std::string GetSource() const OVERRIDE;
|
| virtual void StartDataRequest(
|
| const std::string& path,
|
| - bool is_incognito,
|
| + int render_process_id,
|
| + int render_view_id,
|
| const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
|
| virtual std::string GetMimeType(const std::string&) const OVERRIDE {
|
| return "text/html";
|
| @@ -223,7 +224,8 @@ std::string MobileSetupUIHTMLSource::GetSource() const {
|
|
|
| void MobileSetupUIHTMLSource::StartDataRequest(
|
| const std::string& path,
|
| - bool is_incognito,
|
| + int render_process_id,
|
| + int render_view_id,
|
| const content::URLDataSource::GotDataCallback& callback) {
|
| CellularNetwork* network = NULL;
|
| if (!path.empty()) {
|
|
|