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

Side by Side Diff: chrome/browser/android/dev_tools_discovery_provider_android.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_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ 5 #ifndef CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ 6 #define CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_
7 7
8 #include "base/macros.h"
8 #include "components/devtools_discovery/devtools_discovery_manager.h" 9 #include "components/devtools_discovery/devtools_discovery_manager.h"
9 10
10 class DevToolsDiscoveryProviderAndroid : 11 class DevToolsDiscoveryProviderAndroid :
11 public devtools_discovery::DevToolsDiscoveryManager::Provider { 12 public devtools_discovery::DevToolsDiscoveryManager::Provider {
12 public: 13 public:
13 // Installs provider to devtools_discovery. 14 // Installs provider to devtools_discovery.
14 static void Install(); 15 static void Install();
15 16
16 ~DevToolsDiscoveryProviderAndroid() override; 17 ~DevToolsDiscoveryProviderAndroid() override;
17 18
18 // devtools_discovery::DevToolsDiscoveryManager::Provider implementation. 19 // devtools_discovery::DevToolsDiscoveryManager::Provider implementation.
19 devtools_discovery::DevToolsTargetDescriptor::List GetDescriptors() override; 20 devtools_discovery::DevToolsTargetDescriptor::List GetDescriptors() override;
20 21
21 private: 22 private:
22 DevToolsDiscoveryProviderAndroid(); 23 DevToolsDiscoveryProviderAndroid();
23 24
24 DISALLOW_COPY_AND_ASSIGN(DevToolsDiscoveryProviderAndroid); 25 DISALLOW_COPY_AND_ASSIGN(DevToolsDiscoveryProviderAndroid);
25 }; 26 };
26 27
27 #endif // CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ 28 #endif // CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698