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

Side by Side Diff: chrome/browser/copresence/chrome_whispernet_config.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
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 CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_ 5 #ifndef CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_
6 #define CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_ 6 #define CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_
7 7
8 #include <stdint.h>
9
8 // Shared structs with whispernet. TODO(rkc): These will be removed once we can 10 // Shared structs with whispernet. TODO(rkc): These will be removed once we can
9 // get protobufs working with Nacl. At that point, we'll just pass in 11 // get protobufs working with Nacl. At that point, we'll just pass in
10 // config_data.proto to the whispernet nacl wrapper directly. 12 // config_data.proto to the whispernet nacl wrapper directly.
11 13
12 // We will be using fixed types in all these structures since they will be 14 // We will be using fixed types in all these structures since they will be
13 // stuffed into a string and then read on the other side via a completely 15 // stuffed into a string and then read on the other side via a completely
14 // different toolchain. 16 // different toolchain.
15 17
16 struct AudioDsssParams { 18 struct AudioDsssParams {
17 int64_t include_parity_symbol; 19 int64_t include_parity_symbol;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 }; 55 };
54 56
55 struct AudioParamData { 57 struct AudioParamData {
56 LoggerParam logger; 58 LoggerParam logger;
57 AudioDsssParams audio_dsss; 59 AudioDsssParams audio_dsss;
58 AudioDtmfParams audio_dtmf; 60 AudioDtmfParams audio_dtmf;
59 int64_t recording_channels; 61 int64_t recording_channels;
60 }; 62 };
61 63
62 #endif // CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_ 64 #endif // CHROME_BROWSER_COPRESENCE_CHROME_WHISPERNET_CONFIG_H_
OLDNEW
« no previous file with comments | « chrome/browser/copresence/chrome_whispernet_client_browsertest.cc ('k') | chrome/browser/crash_recovery_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698