Index: chrome/browser/views/html_dialog_view.cc |
=================================================================== |
--- chrome/browser/views/html_dialog_view.cc (revision 58386) |
+++ chrome/browser/views/html_dialog_view.cc (working copy) |
@@ -4,7 +4,7 @@ |
#include "chrome/browser/views/html_dialog_view.h" |
-#include "base/keyboard_codes.h" |
+#include "app/keyboard_codes.h" |
#include "chrome/browser/browser.h" |
#include "chrome/browser/tab_contents/tab_contents.h" |
#include "chrome/common/native_web_keyboard_event.h" |
@@ -55,7 +55,7 @@ |
bool HtmlDialogView::AcceleratorPressed(const views::Accelerator& accelerator) { |
// Pressing ESC closes the dialog. |
- DCHECK_EQ(base::VKEY_ESCAPE, accelerator.GetKeyCode()); |
+ DCHECK_EQ(app::VKEY_ESCAPE, accelerator.GetKeyCode()); |
OnDialogClosed(std::string()); |
return true; |
} |
@@ -201,7 +201,7 @@ |
this); |
// Pressing the ESC key will close the dialog. |
- AddAccelerator(views::Accelerator(base::VKEY_ESCAPE, false, false, false)); |
+ AddAccelerator(views::Accelerator(app::VKEY_ESCAPE, false, false, false)); |
DOMView::LoadURL(GetDialogContentURL()); |
} |