Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6095)

Unified Diff: chrome/test/reliability/page_load_test.cc

Issue 6246001: Move app/key* to ui/base/keycodes/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/interactive_ui/npapi_interactive_test.cc ('k') | chrome/test/render_view_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/reliability/page_load_test.cc
===================================================================
--- chrome/test/reliability/page_load_test.cc (revision 71220)
+++ chrome/test/reliability/page_load_test.cc (working copy)
@@ -37,7 +37,6 @@
#include <fstream>
#include <vector>
-#include "app/keyboard_codes.h"
#include "base/command_line.h"
#include "base/file_path.h"
#include "base/file_util.h"
@@ -69,6 +68,7 @@
#include "chrome/test/reliability/page_load_test.h"
#include "chrome/test/ui/ui_test.h"
#include "net/base/net_util.h"
+#include "ui/base/keycodes/keyboard_codes.h"
#include "v8/include/v8-testing.h"
namespace {
@@ -233,9 +233,9 @@
// Sleep for 2 seconds between commands.
// This used to be settable but the flag went away.
int sleep_time_ms = 2000;
- window->SimulateOSKeyPress(app::VKEY_NEXT, 0);
+ window->SimulateOSKeyPress(ui::VKEY_NEXT, 0);
base::PlatformThread::Sleep(sleep_time_ms);
- window->SimulateOSKeyPress(app::VKEY_NEXT, 0);
+ window->SimulateOSKeyPress(ui::VKEY_NEXT, 0);
base::PlatformThread::Sleep(sleep_time_ms);
}
}
« no previous file with comments | « chrome/test/interactive_ui/npapi_interactive_test.cc ('k') | chrome/test/render_view_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698