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

Unified Diff: third_party/WebKit/Source/modules/quota/StorageUsageCallback.h

Issue 2731593003: bindings: Use fixed-size integer types in the generated code. (Closed)
Patch Set: Explain why 64-bit integers are sometimes not listed Created 3 years, 10 months 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: third_party/WebKit/Source/modules/quota/StorageUsageCallback.h
diff --git a/third_party/WebKit/Source/modules/quota/StorageUsageCallback.h b/third_party/WebKit/Source/modules/quota/StorageUsageCallback.h
index 46265e531dc472ba76d36a3a9940d3f2da117472..e2a25c3c99a6278a00a200d13f23d85df39a567a 100644
--- a/third_party/WebKit/Source/modules/quota/StorageUsageCallback.h
+++ b/third_party/WebKit/Source/modules/quota/StorageUsageCallback.h
@@ -40,8 +40,8 @@ class StorageUsageCallback
public:
virtual ~StorageUsageCallback() {}
DEFINE_INLINE_VIRTUAL_TRACE() {}
- virtual void handleEvent(unsigned long long currentUsageInBytes,
- unsigned long long currentQuotaInBytes) = 0;
+ virtual void handleEvent(uint64_t currentUsageInBytes,
+ uint64_t currentQuotaInBytes) = 0;
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698