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 05eb734377d9bd7d78fed78a426cf879713de9dd..dc4a4de4e24864c8965077796a18d619864a3ebe 100644 |
--- a/chrome/browser/ui/webui/chromeos/system_info_ui.cc |
+++ b/chrome/browser/ui/webui/chromeos/system_info_ui.cc |
@@ -51,7 +51,8 @@ class SystemInfoUIHTMLSource : 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"; |
@@ -107,7 +108,8 @@ std::string SystemInfoUIHTMLSource::GetSource() const { |
void SystemInfoUIHTMLSource::StartDataRequest( |
const std::string& path, |
- bool is_incognito, |
+ int render_process_id, |
+ int render_view_id, |
const content::URLDataSource::GotDataCallback& callback) { |
path_ = path; |
callback_ = callback; |