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

Unified Diff: extensions/browser/api/networking_private/networking_private_linux.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/api/networking_private/networking_private_linux.h
diff --git a/extensions/browser/api/networking_private/networking_private_linux.h b/extensions/browser/api/networking_private/networking_private_linux.h
index 792b9ecdcc79aebbe4f81b45bb411660a9774683..e33c7b889cd5bcd64a57de1c9edd6e4e3cdb8370 100644
--- a/extensions/browser/api/networking_private/networking_private_linux.h
+++ b/extensions/browser/api/networking_private/networking_private_linux.h
@@ -5,9 +5,12 @@
#ifndef EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINUX_H_
#define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_LINUX_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
+#include "base/macros.h"
#include "base/memory/linked_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/threading/thread.h"
@@ -212,7 +215,7 @@ class NetworkingPrivateLinux : public NetworkingPrivateDelegate {
scoped_ptr<base::DictionaryValue>& access_point);
// Maps the WPA security flags to a human readable string.
- void MapSecurityFlagsToString(uint32 securityFlags, std::string* security);
+ void MapSecurityFlagsToString(uint32_t securityFlags, std::string* security);
// Gets the connected access point path on the given device. Internally gets
// all active connections then checks if the device matches the requested

Powered by Google App Engine
This is Rietveld 408576698