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

Side by Side Diff: net/android/cellular_signal_strength.h

Issue 2763853002: Use Android callback API to obtain cellular signal strength (Closed)
Patch Set: comments Created 3 years, 5 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 | « no previous file | net/android/cellular_signal_strength.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_ 5 #ifndef NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_
6 #define NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_ 6 #define NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/optional.h"
12 #include "net/base/net_export.h" 12 #include "net/base/net_export.h"
13 13
14 namespace net { 14 namespace net {
15 15
16 namespace android { 16 namespace android {
17 17
18 namespace cellular_signal_strength { 18 namespace cellular_signal_strength {
19 19
20 // Returns true if the signal strength (in dbM) of the currently registered 20 // Returns the signal strength level (between 0 and 4, both inclusive) of the
21 // cellular connection is available, and sets |*signal_strength_dbm| to that 21 // currently registered cellular connection. If the value is unavailable, an
22 // value. 22 // empty value is returned.
23 NET_EXPORT bool GetSignalStrengthDbm(int32_t* signal_strength_dbm) 23 NET_EXPORT_PRIVATE base::Optional<int32_t> GetSignalStrengthLevel();
24 WARN_UNUSED_RESULT;
25
26 // Returns true if the signal strength level (between 0 and 4, both inclusive)
27 // of the currently registered cellular connection is available, and sets
28 // |*signal_strength_level| to that value with lower value indicating lower
29 // signal strength.
30 NET_EXPORT bool GetSignalStrengthLevel(int32_t* signal_strength_level)
31 WARN_UNUSED_RESULT;
32 24
33 } // namespace cellular_signal_strength 25 } // namespace cellular_signal_strength
34 26
35 } // namespace android 27 } // namespace android
36 28
37 } // namespace net 29 } // namespace net
38 30
39 #endif // NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_ 31 #endif // NET_ANDROID_CELLULAR_SIGNAL_STRENGTH_H_
OLDNEW
« no previous file with comments | « no previous file | net/android/cellular_signal_strength.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698