OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include "chrome/browser/history/starred_url_database.h" | 5 #include "chrome/browser/history/starred_url_database.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/json_writer.h" | 9 #include "base/json_writer.h" |
10 #include "chrome/browser/bookmarks/bookmark_codec.h" | 10 #include "chrome/browser/bookmarks/bookmark_codec.h" |
11 #include "chrome/browser/bookmarks/bookmark_model.h" | 11 #include "chrome/browser/bookmarks/bookmark_model.h" |
12 #include "chrome/browser/history/history.h" | 12 #include "chrome/browser/history/history.h" |
13 #include "chrome/browser/history/query_parser.h" | 13 #include "chrome/browser/history/query_parser.h" |
14 #include "chrome/browser/meta_table_helper.h" | 14 #include "chrome/browser/meta_table_helper.h" |
15 #include "chrome/common/scoped_vector.h" | 15 #include "chrome/common/scoped_vector.h" |
16 #include "chrome/common/sqlite_compiled_statement.h" | 16 #include "chrome/common/sqlite_compiled_statement.h" |
17 #include "chrome/common/sqlite_utils.h" | 17 #include "chrome/common/sqlite_utils.h" |
18 #include "chrome/common/stl_util-inl.h" | 18 #include "chrome/common/stl_util-inl.h" |
19 | 19 |
| 20 using base::Time; |
| 21 |
20 // The following table is used to store star (aka bookmark) information. This | 22 // The following table is used to store star (aka bookmark) information. This |
21 // class derives from URLDatabase, which has its own schema. | 23 // class derives from URLDatabase, which has its own schema. |
22 // | 24 // |
23 // starred | 25 // starred |
24 // id Unique identifier (primary key) for the entry. | 26 // id Unique identifier (primary key) for the entry. |
25 // type Type of entry, if 0 this corresponds to a URL, 1 for | 27 // type Type of entry, if 0 this corresponds to a URL, 1 for |
26 // a system grouping, 2 for a user created group, 3 for | 28 // a system grouping, 2 for a user created group, 3 for |
27 // other. | 29 // other. |
28 // url_id ID of the url, only valid if type == 0 | 30 // url_id ID of the url, only valid if type == 0 |
29 // group_id ID of the group, only valid if type != 0. This id comes | 31 // group_id ID of the group, only valid if type != 0. This id comes |
(...skipping 589 matching lines...) Loading... |
619 scoped_ptr<Value> encoded_bookmarks( | 621 scoped_ptr<Value> encoded_bookmarks( |
620 encoder.Encode(&bookmark_bar_node, &other_node)); | 622 encoder.Encode(&bookmark_bar_node, &other_node)); |
621 std::string content; | 623 std::string content; |
622 JSONWriter::Write(encoded_bookmarks.get(), true, &content); | 624 JSONWriter::Write(encoded_bookmarks.get(), true, &content); |
623 | 625 |
624 return (file_util::WriteFile(path, content.c_str(), | 626 return (file_util::WriteFile(path, content.c_str(), |
625 static_cast<int>(content.length())) != -1); | 627 static_cast<int>(content.length())) != -1); |
626 } | 628 } |
627 | 629 |
628 } // namespace history | 630 } // namespace history |
629 | |
OLD | NEW |