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

Unified Diff: chrome/common/local_discovery/service_discovery_client_impl.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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: chrome/common/local_discovery/service_discovery_client_impl.h
diff --git a/chrome/common/local_discovery/service_discovery_client_impl.h b/chrome/common/local_discovery/service_discovery_client_impl.h
index 777c3f7e3d9c06764061951f8febee867b88a845..bc2a02aeb20111b364e122d33ddb974df1ff8c0d 100644
--- a/chrome/common/local_discovery/service_discovery_client_impl.h
+++ b/chrome/common/local_discovery/service_discovery_client_impl.h
@@ -5,12 +5,15 @@
#ifndef CHROME_COMMON_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_IMPL_H_
#define CHROME_COMMON_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_IMPL_H_
+#include <stdint.h>
+
#include <map>
#include <string>
#include <vector>
#include "base/callback.h"
#include "base/cancelable_callback.h"
+#include "base/macros.h"
#include "base/memory/linked_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/message_loop/message_loop.h"
@@ -239,7 +242,7 @@ class LocalDomainResolverImpl : public LocalDomainResolver {
net::MDnsTransaction::Result result,
const net::RecordParsed* record);
- scoped_ptr<net::MDnsTransaction> CreateTransaction(uint16 type);
+ scoped_ptr<net::MDnsTransaction> CreateTransaction(uint16_t type);
bool IsSuccess();

Powered by Google App Engine
This is Rietveld 408576698