| 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..4a2639060158e5a60bdd8c3273e666b1afc91927 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() 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() {
|
|
|
| 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",
|
|
|