| Index: chrome/browser/renderer_host/render_widget_host_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_widget_host_unittest.cc (revision 71220)
|
| +++ chrome/browser/renderer_host/render_widget_host_unittest.cc (working copy)
|
| @@ -2,7 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "app/keyboard_codes.h"
|
| #include "base/basictypes.h"
|
| #include "base/scoped_ptr.h"
|
| #include "base/shared_memory.h"
|
| @@ -16,6 +15,7 @@
|
| #include "chrome/test/testing_profile.h"
|
| #include "gfx/canvas_skia.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "ui/base/keycodes/keyboard_codes.h"
|
|
|
| using base::TimeDelta;
|
|
|
| @@ -264,7 +264,7 @@
|
| void SimulateKeyboardEvent(WebInputEvent::Type type) {
|
| NativeWebKeyboardEvent key_event;
|
| key_event.type = type;
|
| - key_event.windowsKeyCode = app::VKEY_L; // non-null made up value.
|
| + key_event.windowsKeyCode = ui::VKEY_L; // non-null made up value.
|
| host_->ForwardKeyboardEvent(key_event);
|
| }
|
|
|
|
|