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

Unified Diff: content/browser/quota/mock_quota_manager_proxy.h

Issue 1498003003: Remove kint64max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: INT64_MAX 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 | « content/browser/quota/mock_quota_manager.cc ('k') | content/browser/quota/mock_quota_manager_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/quota/mock_quota_manager_proxy.h
diff --git a/content/browser/quota/mock_quota_manager_proxy.h b/content/browser/quota/mock_quota_manager_proxy.h
index 0f52f6dcc8e860a8e337f7dccfd174c37f6ce787..3ba9810ece2d6c7c50242e9fbf28bd46ffaf27bb 100644
--- a/content/browser/quota/mock_quota_manager_proxy.h
+++ b/content/browser/quota/mock_quota_manager_proxy.h
@@ -55,13 +55,13 @@ class MockQuotaManagerProxy : public QuotaManagerProxy {
void NotifyStorageModified(QuotaClient::ID client_id,
const GURL& origin,
StorageType type,
- int64 delta) override;
+ int64_t delta) override;
int notify_storage_accessed_count() const { return storage_accessed_count_; }
int notify_storage_modified_count() const { return storage_modified_count_; }
GURL last_notified_origin() const { return last_notified_origin_; }
StorageType last_notified_type() const { return last_notified_type_; }
- int64 last_notified_delta() const { return last_notified_delta_; }
+ int64_t last_notified_delta() const { return last_notified_delta_; }
protected:
~MockQuotaManagerProxy() override;
@@ -75,7 +75,7 @@ class MockQuotaManagerProxy : public QuotaManagerProxy {
int storage_modified_count_;
GURL last_notified_origin_;
StorageType last_notified_type_;
- int64 last_notified_delta_;
+ int64_t last_notified_delta_;
QuotaClient* registered_client_;
« no previous file with comments | « content/browser/quota/mock_quota_manager.cc ('k') | content/browser/quota/mock_quota_manager_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698