Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: components/bookmarks/core/browser/bookmark_utils.h

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_
6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "base/strings/string16.h"
12 #include "base/strings/utf_offset_string_conversions.h"
13 #include "components/bookmarks/core/browser/bookmark_node_data.h"
14
15 class BookmarkModel;
16 class BookmarkNode;
17 class GURL;
18
19 namespace user_prefs {
20 class PrefRegistrySyncable;
21 }
22
23 // A collection of bookmark utility functions used by various parts of the UI
24 // that show bookmarks (bookmark manager, bookmark bar view, ...) and other
25 // systems that involve indexing and searching bookmarks.
26 namespace bookmark_utils {
27
28 // Fields to use when finding matching bookmarks.
29 struct QueryFields {
30 QueryFields();
31 ~QueryFields();
32
33 scoped_ptr<base::string16> word_phrase_query;
34 scoped_ptr<base::string16> url;
35 scoped_ptr<base::string16> title;
36 };
37
38 // Clones bookmark node, adding newly created nodes to |parent| starting at
39 // |index_to_add_at|. If |reset_node_times| is true cloned bookmarks and
40 // folders will receive new creation times and folder modification times
41 // instead of using the values stored in |elements|.
42 void CloneBookmarkNode(BookmarkModel* model,
43 const std::vector<BookmarkNodeData::Element>& elements,
44 const BookmarkNode* parent,
45 int index_to_add_at,
46 bool reset_node_times);
47
48 // Copies nodes onto the clipboard. If |remove_nodes| is true the nodes are
49 // removed after copied to the clipboard. The nodes are copied in such a way
50 // that if pasted again copies are made.
51 void CopyToClipboard(BookmarkModel* model,
52 const std::vector<const BookmarkNode*>& nodes,
53 bool remove_nodes);
54
55 // Pastes from the clipboard. The new nodes are added to |parent|, unless
56 // |parent| is null in which case this does nothing. The nodes are inserted
57 // at |index|. If |index| is -1 the nodes are added to the end.
58 void PasteFromClipboard(BookmarkModel* model,
59 const BookmarkNode* parent,
60 int index);
61
62 // Returns true if the user can copy from the pasteboard.
63 bool CanPasteFromClipboard(const BookmarkNode* node);
64
65 // Returns a vector containing up to |max_count| of the most recently modified
66 // folders. This never returns an empty vector.
67 std::vector<const BookmarkNode*> GetMostRecentlyModifiedFolders(
68 BookmarkModel* model, size_t max_count);
69
70 // Returns the most recently added bookmarks. This does not return folders,
71 // only nodes of type url.
72 void GetMostRecentlyAddedEntries(BookmarkModel* model,
73 size_t count,
74 std::vector<const BookmarkNode*>* nodes);
75
76 // Returns true if |n1| was added more recently than |n2|.
77 bool MoreRecentlyAdded(const BookmarkNode* n1, const BookmarkNode* n2);
78
79 // Returns up to |max_count| bookmarks from |model| whose url or title contain
80 // the text |query.word_phrase_query| and exactly match |query.url| and
81 // |query.title|, for all of the preceding fields that are not NULL.
82 // |languages| is user's accept-language setting to decode IDN.
83 void GetBookmarksMatchingProperties(BookmarkModel* model,
84 const QueryFields& query,
85 size_t max_count,
86 const std::string& languages,
87 std::vector<const BookmarkNode*>* nodes);
88
89 // Register user preferences for Bookmarks Bar.
90 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
91
92 // Returns the parent for newly created folders/bookmarks. If |selection| has
93 // one element and it is a folder, |selection[0]| is returned, otherwise
94 // |parent| is returned. If |index| is non-null it is set to the index newly
95 // added nodes should be added at.
96 const BookmarkNode* GetParentForNewNodes(
97 const BookmarkNode* parent,
98 const std::vector<const BookmarkNode*>& selection,
99 int* index);
100
101 // Deletes the bookmark folders for the given list of |ids|.
102 void DeleteBookmarkFolders(BookmarkModel* model, const std::vector<int64>& ids);
103
104 // If there are no bookmarks for url, a bookmark is created.
105 void AddIfNotBookmarked(BookmarkModel* model,
106 const GURL& url,
107 const base::string16& title);
108
109 // Removes all bookmarks for the given |url|.
110 void RemoveAllBookmarks(BookmarkModel* model, const GURL& url);
111
112 // Truncates an overly-long URL, unescapes it and interprets the characters
113 // as UTF-8 (both via net::FormatUrl()), and lower-cases it, returning the
114 // result. |languages| is passed to net::FormatUrl(). |adjustments|, if
115 // non-NULL, is set to reflect the transformations the URL spec underwent to
116 // become the return value. If a caller computes offsets (e.g., for the
117 // position of matched text) in this cleaned-up string, it can use
118 // |adjustments| to calculate the location of these offsets in the original
119 // string (via base::OffsetAdjuster::UnadjustOffsets()). This is useful if
120 // later the original string gets formatted in a different way for displaying.
121 // In this case, knowing the offsets in the original string will allow them to
122 // be properly translated to offsets in the newly-formatted string.
123 //
124 // The unescaping done by this function makes it possible to match substrings
125 // that were originally escaped for navigation; for example, if the user
126 // searched for "a&p", the query would be escaped as "a%26p", so without
127 // unescaping, an input string of "a&p" would no longer match this URL. Note
128 // that the resulting unescaped URL may not be directly navigable (which is
129 // why it was escaped to begin with).
130 base::string16 CleanUpUrlForMatching(
131 const GURL& gurl,
132 const std::string& languages,
133 base::OffsetAdjuster::Adjustments* adjustments);
134
135 // Returns the lower-cased title, possibly truncated if the original title
136 // is overly-long.
137 base::string16 CleanUpTitleForMatching(const base::string16& title);
138
139 } // namespace bookmark_utils
140
141 // Returns the node with |id|, or NULL if there is no node with |id|.
142 const BookmarkNode* GetBookmarkNodeByID(const BookmarkModel* model, int64 id);
143
144 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_
OLDNEW
« no previous file with comments | « components/bookmarks/core/browser/bookmark_storage.cc ('k') | components/bookmarks/core/browser/bookmark_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698