| Index: chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/system_info_ui.cc b/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| index 5d8e7b998aa89bbeeb10c262c4ca6a9de347c1c5..c35dded0b8f8c2954c0b6a8f02736cd0f6f7ca5f 100644
|
| --- a/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/system_info_ui.cc
|
| @@ -51,7 +51,7 @@ class SystemInfoUIHTMLSource : 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";
|
| @@ -107,7 +107,7 @@ std::string SystemInfoUIHTMLSource::GetSource() {
|
|
|
| void SystemInfoUIHTMLSource::StartDataRequest(
|
| const std::string& path,
|
| - bool is_incognito,
|
| + const content::URLDataSource::ExtraRequestInfo& info,
|
| const content::URLDataSource::GotDataCallback& callback) {
|
| path_ = path;
|
| callback_ = callback;
|
|
|