| 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 76293a830f109e6a76205fea75fb310347e6c60a..4e9f6c4b656cc81eaf6e4c3bdf66ce8ef8504a00 100644
|
| --- a/chrome/browser/ui/webui/devtools_ui.cc
|
| +++ b/chrome/browser/ui/webui/devtools_ui.cc
|
| @@ -28,7 +28,7 @@ class DevToolsDataSource : public ChromeURLDataManager::DataSource {
|
| DevToolsDataSource();
|
|
|
| virtual void StartDataRequest(const std::string& path,
|
| - bool is_off_the_record,
|
| + bool is_incognito,
|
| int request_id);
|
| virtual std::string GetMimeType(const std::string& path) const;
|
|
|
| @@ -43,7 +43,7 @@ DevToolsDataSource::DevToolsDataSource()
|
| }
|
|
|
| void DevToolsDataSource::StartDataRequest(const std::string& path,
|
| - bool is_off_the_record,
|
| + bool is_incognito,
|
| int request_id) {
|
| std::string filename = PathWithoutParams(path);
|
|
|
|
|