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

Unified Diff: ios/web/web_state/ui/crw_ui_web_view_web_controller.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/web/web_state/ui/crw_ui_web_view_web_controller.h
diff --git a/ios/web/web_state/ui/crw_ui_web_view_web_controller.h b/ios/web/web_state/ui/crw_ui_web_view_web_controller.h
index 1cc981f646f25bda726b903a0a6bf34ee4d5157e..a007662b5eb8200a8a23186f08d23342ef168a56 100644
--- a/ios/web/web_state/ui/crw_ui_web_view_web_controller.h
+++ b/ios/web/web_state/ui/crw_ui_web_view_web_controller.h
@@ -5,6 +5,7 @@
#ifndef IOS_WEB_WEB_STATE_UI_CRW_UI_WEB_VIEW_WEB_CONTROLLER_H_
#define IOS_WEB_WEB_STATE_UI_CRW_UI_WEB_VIEW_WEB_CONTROLLER_H_
+#include <stdint.h>
#import <UIKit/UIKit.h>
#import "ios/web/web_state/crw_recurring_task_delegate.h"
@@ -13,8 +14,8 @@
namespace web {
// Continuous JavaScript check timer frequency constants (exposed for tests).
-extern const int64 kContinuousCheckIntervalMSHigh;
-extern const int64 kContinuousCheckIntervalMSLow;
+extern const int64_t kContinuousCheckIntervalMSHigh;
+extern const int64_t kContinuousCheckIntervalMSLow;
} // namespace web
« no previous file with comments | « ios/web/web_state/js/crw_js_injection_manager_unittest.mm ('k') | ios/web/web_state/ui/crw_ui_web_view_web_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698