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

Side by Side Diff: chrome/browser/ui/views/ash/caps_lock_handler.cc

Issue 9586029: Fix compilation error which is the side effect of 124852 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/select_file_dialog_aura.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/views/ash/caps_lock_handler.h" 5 #include "chrome/browser/ui/views/ash/caps_lock_handler.h"
6 6
7 #include "base/logging.h"
7 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
8 9
9 // TODO(yusukes): Support Ash on Windows. 10 // TODO(yusukes): Support Ash on Windows.
10 #if defined(OS_CHROMEOS) 11 #if defined(OS_CHROMEOS)
11 #include "chrome/browser/browser_process.h" 12 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/chromeos/input_method/xkeyboard.h" 13 #include "chrome/browser/chromeos/input_method/xkeyboard.h"
13 #include "chrome/browser/chromeos/system/runtime_environment.h" 14 #include "chrome/browser/chromeos/system/runtime_environment.h"
14 #include "chrome/browser/prefs/pref_service.h" 15 #include "chrome/browser/prefs/pref_service.h"
15 #include "chrome/common/pref_names.h" 16 #include "chrome/common/pref_names.h"
16 #endif 17 #endif
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 NOTIMPLEMENTED(); 56 NOTIMPLEMENTED();
56 #endif 57 #endif
57 return false; 58 return false;
58 } 59 }
59 60
60 #if defined(OS_CHROMEOS) 61 #if defined(OS_CHROMEOS)
61 void CapsLockHandler::OnCapsLockChange(bool enabled) { 62 void CapsLockHandler::OnCapsLockChange(bool enabled) {
62 caps_lock_is_on_ = enabled; 63 caps_lock_is_on_ = enabled;
63 } 64 }
64 #endif 65 #endif
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/select_file_dialog_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698