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

Side by Side Diff: media/audio/audio_input_controller_unittest.cc

Issue 5977010: Move CancellationFlag and WaitableEvent to the synchronization subdirectory.... (Closed) Base URL: svn://chrome-svn/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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ipc/ipc_sync_message_filter.cc ('k') | media/audio/audio_output_controller_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/waitable_event.h" 6 #include "base/synchronization/waitable_event.h"
7 #include "media/audio/audio_input_controller.h" 7 #include "media/audio/audio_input_controller.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 using ::testing::_; 11 using ::testing::_;
12 using ::testing::AtLeast; 12 using ::testing::AtLeast;
13 using ::testing::Exactly; 13 using ::testing::Exactly;
14 using ::testing::InvokeWithoutArgs; 14 using ::testing::InvokeWithoutArgs;
15 using ::testing::NotNull; 15 using ::testing::NotNull;
16 16
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 kSampleRate, kBitsPerSample, kSamplesPerPacket); 122 kSampleRate, kBitsPerSample, kSamplesPerPacket);
123 scoped_refptr<AudioInputController> controller = 123 scoped_refptr<AudioInputController> controller =
124 AudioInputController::Create(&event_handler, params); 124 AudioInputController::Create(&event_handler, params);
125 ASSERT_TRUE(controller.get()); 125 ASSERT_TRUE(controller.get());
126 126
127 controller->Close(); 127 controller->Close();
128 controller->Close(); 128 controller->Close();
129 } 129 }
130 130
131 } // namespace media 131 } // namespace media
OLDNEW
« no previous file with comments | « ipc/ipc_sync_message_filter.cc ('k') | media/audio/audio_output_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698