| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
| 6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 int32 response_id_; | 626 int32 response_id_; |
| 627 | 627 |
| 628 // The origin doing the initiating. | 628 // The origin doing the initiating. |
| 629 string16 origin_; | 629 string16 origin_; |
| 630 | 630 |
| 631 // The name of the database. | 631 // The name of the database. |
| 632 string16 name_; | 632 string16 name_; |
| 633 | 633 |
| 634 // The description of the database. | 634 // The description of the database. |
| 635 string16 description_; | 635 string16 description_; |
| 636 |
| 637 // The maximum size of the database. |
| 638 uint64 maximum_size_; |
| 636 }; | 639 }; |
| 637 | 640 |
| 638 // Used to create an object store. | 641 // Used to create an object store. |
| 639 struct ViewHostMsg_IDBDatabaseCreateObjectStore_Params { | 642 struct ViewHostMsg_IDBDatabaseCreateObjectStore_Params { |
| 640 ViewHostMsg_IDBDatabaseCreateObjectStore_Params(); | 643 ViewHostMsg_IDBDatabaseCreateObjectStore_Params(); |
| 641 ~ViewHostMsg_IDBDatabaseCreateObjectStore_Params(); | 644 ~ViewHostMsg_IDBDatabaseCreateObjectStore_Params(); |
| 642 | 645 |
| 643 // The name of the object store. | 646 // The name of the object store. |
| 644 string16 name_; | 647 string16 name_; |
| 645 | 648 |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1279 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { | 1282 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { |
| 1280 typedef ViewHostMsg_AccessibilityNotification_Params param_type; | 1283 typedef ViewHostMsg_AccessibilityNotification_Params param_type; |
| 1281 static void Write(Message* m, const param_type& p); | 1284 static void Write(Message* m, const param_type& p); |
| 1282 static bool Read(const Message* m, void** iter, param_type* p); | 1285 static bool Read(const Message* m, void** iter, param_type* p); |
| 1283 static void Log(const param_type& p, std::string* l); | 1286 static void Log(const param_type& p, std::string* l); |
| 1284 }; | 1287 }; |
| 1285 | 1288 |
| 1286 } // namespace IPC | 1289 } // namespace IPC |
| 1287 | 1290 |
| 1288 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 1291 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
| OLD | NEW |