Index: ash/system/toast/toast_data.h |
diff --git a/ash/system/toast/toast_data.h b/ash/system/toast/toast_data.h |
index 1408712e89f6ea29a4ef6567a2c302680869c862..ffa66774e3193efa4549910722892e869d3c3a15 100644 |
--- a/ash/system/toast/toast_data.h |
+++ b/ash/system/toast/toast_data.h |
@@ -12,14 +12,12 @@ |
namespace ash { |
struct ASH_EXPORT ToastData { |
- ToastData(const std::string& id, |
- const std::string& text, |
- uint64_t duration_ms) |
+ ToastData(const std::string& id, const std::string& text, int32_t duration_ms) |
: id(id), text(text), duration_ms(duration_ms) {} |
std::string id; |
std::string text; |
- uint64_t duration_ms; |
+ int32_t duration_ms; |
}; |
} // namespace ash |