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

Unified Diff: components/sessions/core/session_id.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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
« no previous file with comments | « components/sessions/core/session_command.h ('k') | components/sessions/core/session_service_commands.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/core/session_id.h
diff --git a/components/sessions/core/session_id.h b/components/sessions/core/session_id.h
index 77b4de752088c8aebb91ae9f1042742b50dc950c..d4c2645f1e626763accdbc07493b3d63e6b5db39 100644
--- a/components/sessions/core/session_id.h
+++ b/components/sessions/core/session_id.h
@@ -5,13 +5,14 @@
#ifndef COMPONENTS_SESSIONS_CORE_SESSION_ID_H_
#define COMPONENTS_SESSIONS_CORE_SESSION_ID_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "components/sessions/core/sessions_export.h"
// Uniquely identifies a tab or window for the duration of a session.
class SESSIONS_EXPORT SessionID {
public:
- typedef int32 id_type;
+ typedef int32_t id_type;
SessionID();
~SessionID() {}
« no previous file with comments | « components/sessions/core/session_command.h ('k') | components/sessions/core/session_service_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698