Home | History | Annotate | Download | only in importer

Lines Matching refs:bookmark

40   // Build a set containing the bookmark bar folder names.
119 // If the bookmark bar is currently empty, we should import directly to it.
139 // If the user currently has no bookmarks in the bookmark bar, make sure that
149 for (std::vector<ImportedBookmarkEntry>::const_iterator bookmark =
151 bookmark != reordered_bookmarks.end(); ++bookmark) {
153 if (!bookmark->is_folder && !bookmark->url.is_valid())
157 if (import_to_top_level && (add_all_to_top_level || bookmark->in_toolbar)) {
172 // Ensure any enclosing folders are present in the model. The bookmark's
176 bookmark->path.begin();
177 folder_name != bookmark->path.end(); ++folder_name) {
178 if (bookmark->in_toolbar && parent == bookmark_bar &&
179 folder_name == bookmark->path.begin()) {
199 if (bookmark->is_folder) {
200 model->AddFolder(parent, parent->child_count(), bookmark->title);
203 bookmark->title, bookmark->url,
204 bookmark->creation_time);