Index: chrome/browser/ui/webui/devtools_ui.cc |
diff --git a/chrome/browser/ui/webui/devtools_ui.cc b/chrome/browser/ui/webui/devtools_ui.cc |
index bb14bf2efb03e9005a58cd3c9eb0a71f2d460733..e6ad078a566a280d25393ec415147daf2bdc38b1 100644 |
--- a/chrome/browser/ui/webui/devtools_ui.cc |
+++ b/chrome/browser/ui/webui/devtools_ui.cc |
@@ -103,7 +103,8 @@ class BundledDataSource : public content::URLDataSource { |
virtual void StartDataRequest( |
const std::string& path, |
- bool is_incognito, |
+ int render_process_id, |
+ int render_view_id, |
const content::URLDataSource::GotDataCallback& callback) OVERRIDE { |
std::string filename = PathWithoutParams(path); |
@@ -145,7 +146,8 @@ class RemoteDataSource : public content::URLDataSource { |
virtual void StartDataRequest( |
const std::string& path, |
- bool is_incognito, |
+ int render_process_id, |
+ int render_view_id, |
const content::URLDataSource::GotDataCallback& callback) OVERRIDE { |
GURL url = GURL(kRemoteFrontendBase + path); |
@@ -182,7 +184,8 @@ class LocalhostDataSource : public content::URLDataSource { |
virtual void StartDataRequest( |
const std::string& path, |
- bool is_incognito, |
+ int render_process_id, |
+ int render_view_id, |
const content::URLDataSource::GotDataCallback& callback) OVERRIDE { |
GURL url = GURL("http://localhost:9222/" + path); |