| 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 14b04f4735e22e750ac903fcb170030ec1541ce7..a58de6ab8a1dee33eabb026a3cd7ac85e002b331 100644
|
| --- a/chrome/browser/ui/webui/devtools_ui.cc
|
| +++ b/chrome/browser/ui/webui/devtools_ui.cc
|
| @@ -19,6 +19,7 @@
|
| #include "content/public/browser/render_view_host.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/browser/web_ui.h"
|
| +#include "ui/base/layout.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
|
|
| using content::BrowserThread;
|
| @@ -66,7 +67,7 @@ void DevToolsDataSource::StartDataRequest(const std::string& path,
|
| " with --debug-devtools.";
|
| const ResourceBundle& rb = ResourceBundle::GetSharedInstance();
|
| scoped_refptr<base::RefCountedStaticMemory> bytes(rb.LoadDataResourceBytes(
|
| - resource_id));
|
| + resource_id, ui::SCALE_FACTOR_NONE));
|
| SendResponse(request_id, bytes);
|
| }
|
|
|
|
|