| Index: chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc b/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc
|
| index 207c40c6e32be4c4fdca4310a4a1751c8b998cc8..65fdc8b6c7b870915f095379c2744000c56f5395 100644
|
| --- a/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc
|
| @@ -36,7 +36,8 @@ class ProxySettingsHTMLSource : 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";
|
| @@ -65,7 +66,8 @@ std::string ProxySettingsHTMLSource::GetSource() const {
|
|
|
| void ProxySettingsHTMLSource::StartDataRequest(
|
| const std::string& path,
|
| - bool is_incognito,
|
| + int render_process_id,
|
| + int render_view_id,
|
| const content::URLDataSource::GotDataCallback& callback) {
|
| webui::SetFontAndTextDirection(localized_strings_.get());
|
|
|
|
|