| 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 3256ec3718e2177880b5214f95ce4469886d7a94..6aef30c5a026a68844ade2dc4e67e2b0ee71a59c 100644
|
| --- a/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc
|
| @@ -79,7 +79,8 @@ class SimUnlockUIHTMLSource : 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";
|
| @@ -259,7 +260,8 @@ std::string SimUnlockUIHTMLSource::GetSource() const {
|
|
|
| void SimUnlockUIHTMLSource::StartDataRequest(
|
| const std::string& path,
|
| - bool is_incognito,
|
| + int render_process_id,
|
| + int render_view_id,
|
| const content::URLDataSource::GotDataCallback& callback) {
|
| DictionaryValue strings;
|
| strings.SetString("title",
|
|
|