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

Unified Diff: ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h

Issue 1544743002: Switch to standard integer types in ios/. (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: ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h
diff --git a/ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h b/ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h
index 7c1436f0082a731fedd70945176020eb8ae6f545..67757723c7d6fa90c6ee17c659d941a67a3057de 100644
--- a/ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h
+++ b/ios/public/provider/chrome/browser/sessions/live_tab_context_provider.h
@@ -5,7 +5,7 @@
#ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_SESSIONS_LIVE_TAB_CONTEXT_PROVIDER_H_
#define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_SESSIONS_LIVE_TAB_CONTEXT_PROVIDER_H_
-#include "base/basictypes.h"
+#include <stdint.h>
namespace sessions {
class LiveTab;
@@ -26,7 +26,7 @@ class LiveTabContextProvider {
ios::ChromeBrowserState* browser_state) = 0;
// Retrieves the context with the given ID, if one exists.
- virtual sessions::LiveTabContext* FindContextWithID(int32 desired_id) = 0;
+ virtual sessions::LiveTabContext* FindContextWithID(int32_t desired_id) = 0;
// Retrieves the context for the given tab, if one exists.
virtual sessions::LiveTabContext* FindContextForTab(
« no previous file with comments | « ios/public/provider/chrome/browser/browser_state/chrome_browser_state_manager.h ('k') | ios/public/provider/web/web_ui_ios.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698