summaryrefslogtreecommitdiffstats
path: root/base/event_recorder.cc
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-26 23:08:02 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-26 23:08:02 +0000
commit2fdc86af6441d62cf6f3af049ac4cab1984d5323 (patch)
tree4a548a889f1c261676bdd4b6ccbca4255cea1c5e /base/event_recorder.cc
parent7e7a62b46abc05baaa5e969fd64cff485857c1b6 (diff)
downloadchromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.zip
chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.gz
chromium_src-2fdc86af6441d62cf6f3af049ac4cab1984d5323.tar.bz2
Style cleanup in preparation for auto-linting base/.
BUG=none TEST=none Review URL: http://codereview.chromium.org/552004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/event_recorder.cc')
-rw-r--r--base/event_recorder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/event_recorder.cc b/base/event_recorder.cc
index 92128af..7c3336b 100644
--- a/base/event_recorder.cc
+++ b/base/event_recorder.cc
@@ -179,7 +179,7 @@ LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
// The Journal Recorder must stop recording events when system modal
// dialogs are present. (see msdn link above)
- switch(nCode) {
+ switch (nCode) {
case HC_SYSMODALON:
recording_enabled = false;
break;
@@ -205,7 +205,7 @@ LRESULT EventRecorder::PlaybackWndProc(int nCode, WPARAM wParam,
static bool playback_enabled = true;
int delay = 0;
- switch(nCode) {
+ switch (nCode) {
// A system modal dialog box is being displayed. Stop playing back
// messages.
case HC_SYSMODALON: