Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "webkit/common/quota/quota_types.h" | |
| 6 | |
| 7 namespace quota { | |
| 8 | |
| 9 RequestStorageQuotaParams::RequestStorageQuotaParams() | |
| 10 : render_view_id(-1), | |
|
nasko
2014/03/03 20:00:32
Use MSG_ROUTING_NONE, which is the proper value to
Greg Billock
2014/03/03 22:41:47
Done.
| |
| 11 request_id(-1), | |
| 12 storage_type(kStorageTypeTemporary), | |
| 13 requested_size(0), | |
| 14 user_gesture(false) {} | |
| 15 | |
| 16 RequestStorageQuotaParams::~RequestStorageQuotaParams() {} | |
| 17 | |
| 18 } // namespace quota | |
| OLD | NEW |