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

Side by Side Diff: components/audio_modem/public/audio_modem_types.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « components/audio_modem/modem_unittest.cc ('k') | components/audio_modem/test/random_samples.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_ 5 #ifndef COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_
6 #define COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_ 6 #define COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/callback_forward.h" 13 #include "base/callback_forward.h"
12 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
13 #include "media/base/channel_layout.h" 15 #include "media/base/channel_layout.h"
14 16
15 // Various constants and types used for the audio modem. 17 // Various constants and types used for the audio modem.
16 // TODO(ckehoe): Move the constants out into their own header. 18 // TODO(ckehoe): Move the constants out into their own header.
17 19
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 bool crc; 66 bool crc;
65 bool parity; 67 bool parity;
66 }; 68 };
67 69
68 // Callback to pass around found tokens. 70 // Callback to pass around found tokens.
69 using TokensCallback = base::Callback<void(const std::vector<AudioToken>&)>; 71 using TokensCallback = base::Callback<void(const std::vector<AudioToken>&)>;
70 72
71 } // namespace audio_modem 73 } // namespace audio_modem
72 74
73 #endif // COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_ 75 #endif // COMPONENTS_AUDIO_MODEM_PUBLIC_AUDIO_MODEM_TYPES_H_
OLDNEW
« no previous file with comments | « components/audio_modem/modem_unittest.cc ('k') | components/audio_modem/test/random_samples.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698