OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // BookmarkCodec is responsible for encoding and decoding the BookmarkModel | 5 // BookmarkCodec is responsible for encoding and decoding the BookmarkModel |
6 // into JSON values. The encoded values are written to disk via the | 6 // into JSON values. The encoded values are written to disk via the |
7 // BookmarkService. | 7 // BookmarkService. |
8 | 8 |
9 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ | 9 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ |
10 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ | 10 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // is stored to the file. After a call to decode, the computed checksum can | 66 // is stored to the file. After a call to decode, the computed checksum can |
67 // differ from the stored checksum if the file contents were changed by the | 67 // differ from the stored checksum if the file contents were changed by the |
68 // user. | 68 // user. |
69 const std::string& stored_checksum() const { return stored_checksum_; } | 69 const std::string& stored_checksum() const { return stored_checksum_; } |
70 | 70 |
71 // Returns whether the IDs were reassigned during decoding. Always returns | 71 // Returns whether the IDs were reassigned during decoding. Always returns |
72 // false after encoding. | 72 // false after encoding. |
73 bool ids_reassigned() const { return ids_reassigned_; } | 73 bool ids_reassigned() const { return ids_reassigned_; } |
74 | 74 |
75 // Names of the various keys written to the Value. | 75 // Names of the various keys written to the Value. |
76 static const wchar_t* kRootsKey; | 76 static const char* kRootsKey; |
77 static const wchar_t* kRootFolderNameKey; | 77 static const char* kRootFolderNameKey; |
78 static const wchar_t* kOtherBookmarkFolderNameKey; | 78 static const char* kOtherBookmarkFolderNameKey; |
79 static const wchar_t* kVersionKey; | 79 static const char* kVersionKey; |
80 static const wchar_t* kChecksumKey; | 80 static const char* kChecksumKey; |
81 static const wchar_t* kIdKey; | 81 static const char* kIdKey; |
82 static const wchar_t* kTypeKey; | 82 static const char* kTypeKey; |
83 static const wchar_t* kNameKey; | 83 static const char* kNameKey; |
84 static const wchar_t* kDateAddedKey; | 84 static const char* kDateAddedKey; |
85 static const wchar_t* kURLKey; | 85 static const char* kURLKey; |
86 static const wchar_t* kDateModifiedKey; | 86 static const char* kDateModifiedKey; |
87 static const wchar_t* kChildrenKey; | 87 static const char* kChildrenKey; |
88 | 88 |
89 // Possible values for kTypeKey. | 89 // Possible values for kTypeKey. |
90 static const char* kTypeURL; | 90 static const char* kTypeURL; |
91 static const char* kTypeFolder; | 91 static const char* kTypeFolder; |
92 | 92 |
93 private: | 93 private: |
94 // Encodes node and all its children into a Value object and returns it. | 94 // Encodes node and all its children into a Value object and returns it. |
95 // The caller takes ownership of the returned object. | 95 // The caller takes ownership of the returned object. |
96 Value* EncodeNode(const BookmarkNode* node); | 96 Value* EncodeNode(const BookmarkNode* node); |
97 | 97 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 std::string computed_checksum_; | 156 std::string computed_checksum_; |
157 std::string stored_checksum_; | 157 std::string stored_checksum_; |
158 | 158 |
159 // Maximum ID assigned when decoding data. | 159 // Maximum ID assigned when decoding data. |
160 int64 maximum_id_; | 160 int64 maximum_id_; |
161 | 161 |
162 DISALLOW_COPY_AND_ASSIGN(BookmarkCodec); | 162 DISALLOW_COPY_AND_ASSIGN(BookmarkCodec); |
163 }; | 163 }; |
164 | 164 |
165 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ | 165 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_CODEC_H_ |
OLD | NEW |