summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_active_document.cc
diff options
context:
space:
mode:
authorbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-31 17:18:50 +0000
committerbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-31 17:18:50 +0000
commita8e2058011129cbef38bf89834ee01715556b392 (patch)
tree00cb892894c52145a66d23048acf2a81f0eed61d /chrome_frame/chrome_active_document.cc
parenta1fa87c8042ed2a3f9edd74ad2f313c84b1e407a (diff)
downloadchromium_src-a8e2058011129cbef38bf89834ee01715556b392.zip
chromium_src-a8e2058011129cbef38bf89834ee01715556b392.tar.gz
chromium_src-a8e2058011129cbef38bf89834ee01715556b392.tar.bz2
Move base/win_util to the base/win directory and use the base::win namespace.
Fix up includes, many files including base/win_util don't actually need it. TEST=it compiles BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_active_document.cc')
-rw-r--r--chrome_frame/chrome_active_document.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/chrome_active_document.cc b/chrome_frame/chrome_active_document.cc
index aa5daff..4af3d2c 100644
--- a/chrome_frame/chrome_active_document.cc
+++ b/chrome_frame/chrome_active_document.cc
@@ -29,6 +29,7 @@
#include "base/threading/thread_local.h"
#include "base/utf_string_conversions.h"
#include "base/win/scoped_variant.h"
+#include "base/win/win_util.h"
#include "grit/generated_resources.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/app/chrome_dll_resource.h"
@@ -639,8 +640,8 @@ bool IsFindAccelerator(const MSG& msg) {
// TODO(robertshield): This may not stand up to localization. Fix if this
// is the case.
return msg.message == WM_KEYDOWN && msg.wParam == 'F' &&
- win_util::IsCtrlPressed() &&
- !(win_util::IsAltPressed() || win_util::IsShiftPressed());
+ base::win::IsCtrlPressed() &&
+ !(base::win::IsAltPressed() || base::win::IsShiftPressed());
}
void ChromeActiveDocument::OnAcceleratorPressed(const MSG& accel_message) {