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

Unified Diff: chrome/renderer/password_autocomplete_manager.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/renderer/autofill_helper.cc ('k') | chrome/renderer/password_autocomplete_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/password_autocomplete_manager.cc
===================================================================
--- chrome/renderer/password_autocomplete_manager.cc (revision 71220)
+++ chrome/renderer/password_autocomplete_manager.cc (working copy)
@@ -4,7 +4,6 @@
#include "chrome/renderer/password_autocomplete_manager.h"
-#include "app/keyboard_codes.h"
#include "base/message_loop.h"
#include "base/scoped_ptr.h"
#include "chrome/common/render_messages.h"
@@ -17,6 +16,7 @@
#include "third_party/WebKit/WebKit/chromium/public/WebSecurityOrigin.h"
#include "third_party/WebKit/WebKit/chromium/public/WebVector.h"
#include "third_party/WebKit/WebKit/chromium/public/WebView.h"
+#include "ui/base/keycodes/keyboard_codes.h"
#include "webkit/glue/form_field.h"
#include "webkit/glue/password_form.h"
#include "webkit/glue/password_form_dom_manager.h"
@@ -303,7 +303,7 @@
int win_key_code = event.windowsKeyCode;
iter->second.backspace_pressed_last =
- (win_key_code == app::VKEY_BACK || win_key_code == app::VKEY_DELETE);
+ (win_key_code == ui::VKEY_BACK || win_key_code == ui::VKEY_DELETE);
}
bool PasswordAutocompleteManager::FillPassword(
« no previous file with comments | « chrome/renderer/autofill_helper.cc ('k') | chrome/renderer/password_autocomplete_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698