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

Side by Side Diff: chrome/browser/devtools/device/webrtc/devtools_bridge_instances_request.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUEST_ H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUEST_ H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUEST_ H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUEST_ H_
7 7
8 #include "base/macros.h"
8 #include "chrome/browser/devtools/device/android_device_manager.h" 9 #include "chrome/browser/devtools/device/android_device_manager.h"
9 #include "chrome/browser/local_discovery/gcd_api_flow.h" 10 #include "chrome/browser/local_discovery/gcd_api_flow.h"
10 11
11 class DevToolsBridgeInstancesRequest 12 class DevToolsBridgeInstancesRequest
12 : public local_discovery::GCDApiFlowRequest { 13 : public local_discovery::GCDApiFlowRequest {
13 public: 14 public:
14 struct Instance { 15 struct Instance {
15 std::string id; 16 std::string id;
16 std::string display_name; 17 std::string display_name;
17 18
(...skipping 23 matching lines...) Expand all
41 private: 42 private:
42 void TryAddInstance(const base::DictionaryValue& device_value); 43 void TryAddInstance(const base::DictionaryValue& device_value);
43 44
44 Delegate* const delegate_; 45 Delegate* const delegate_;
45 InstanceList result_; 46 InstanceList result_;
46 47
47 DISALLOW_COPY_AND_ASSIGN(DevToolsBridgeInstancesRequest); 48 DISALLOW_COPY_AND_ASSIGN(DevToolsBridgeInstancesRequest);
48 }; 49 };
49 50
50 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUE ST_H_ 51 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_DEVTOOLS_BRIDGE_INSTANCES_REQUE ST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698