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

Unified Diff: chrome/browser/notifications/extension_welcome_notification_unittest.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (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/browser/notifications/extension_welcome_notification_unittest.cc
diff --git a/chrome/browser/notifications/extension_welcome_notification_unittest.cc b/chrome/browser/notifications/extension_welcome_notification_unittest.cc
index 85826c3e4cf8336e0764d92c7498b00ef95a5ae9..e04706ce6edc1ff852472b2ea52b15bb9198f622 100644
--- a/chrome/browser/notifications/extension_welcome_notification_unittest.cc
+++ b/chrome/browser/notifications/extension_welcome_notification_unittest.cc
@@ -4,8 +4,11 @@
#include "chrome/browser/notifications/extension_welcome_notification.h"
+#include <stdint.h>
+
#include <string>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/prefs/pref_service.h"
@@ -195,10 +198,10 @@ class ExtensionWelcomeNotificationTest : public testing::Test {
void SetBooleanPref(const char* path, bool value) const {
profile_->GetPrefs()->SetBoolean(path, value);
}
- int64 GetInt64Pref(const char* path) const {
+ int64_t GetInt64Pref(const char* path) const {
return profile_->GetPrefs()->GetInt64(path);
}
- void SetInt64Pref(const char* path, int64 value) const {
+ void SetInt64Pref(const char* path, int64_t value) const {
profile_->GetPrefs()->SetInt64(path, value);
}

Powered by Google App Engine
This is Rietveld 408576698