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

Unified Diff: media/blink/cache_util.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/blink/cache_util.h
diff --git a/media/blink/cache_util.h b/media/blink/cache_util.h
index 8dd2a19bca7fec11a0a97975c3cf9d4e5d02b3d4..dc66c3df32a5bf116a3e44f5a7470252a2aa16be 100644
--- a/media/blink/cache_util.h
+++ b/media/blink/cache_util.h
@@ -7,7 +7,6 @@
#include <vector>
-#include "base/basictypes.h"
#include "base/time/time.h"
#include "media/blink/media_blink_export.h"
@@ -34,7 +33,7 @@ enum UncacheableReason {
// Return the logical OR of the reasons "response" cannot be used for a future
// request (using the disk cache), or 0 if it might be useful.
-uint32 MEDIA_BLINK_EXPORT
+uint32_t MEDIA_BLINK_EXPORT
GetReasonsForUncacheability(const blink::WebURLResponse& response);
// Returns when we should evict data from this response from our

Powered by Google App Engine
This is Rietveld 408576698