diff options
Diffstat (limited to 'content/shell/layout_test_controller_bindings.cc')
-rw-r--r-- | content/shell/layout_test_controller_bindings.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/content/shell/layout_test_controller_bindings.cc b/content/shell/layout_test_controller_bindings.cc index 054b4f7..2f3a5ad 100644 --- a/content/shell/layout_test_controller_bindings.cc +++ b/content/shell/layout_test_controller_bindings.cc @@ -10,7 +10,6 @@ #include "grit/shell_resources.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" -#include "ui/base/layout.h" #include "ui/base/resource/resource_bundle.h" using WebKit::WebFrame; @@ -21,8 +20,7 @@ namespace content { namespace { base::StringPiece GetStringResource(int resource_id) { - return ResourceBundle::GetSharedInstance().GetRawDataResource( - resource_id, ui::SCALE_FACTOR_NONE); + return ResourceBundle::GetSharedInstance().GetRawDataResource(resource_id); } RenderView* GetCurrentRenderView() { |