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

Unified Diff: chrome/browser/bookmarks/imported_bookmark_entry.h

Issue 14575004: Extract BookmarksFileImporter from Firefox2Importer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix again Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/bookmarks/imported_bookmark_entry.h
diff --git a/chrome/browser/bookmarks/imported_bookmark_entry.h b/chrome/browser/bookmarks/imported_bookmark_entry.h
new file mode 100644
index 0000000000000000000000000000000000000000..3b51e2a924078980a8c8ea385fee52c780adae2e
--- /dev/null
+++ b/chrome/browser/bookmarks/imported_bookmark_entry.h
@@ -0,0 +1,27 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_
+#define CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_
+
+#include <vector>
+
+#include "base/string16.h"
+#include "base/time.h"
+#include "googleurl/src/gurl.h"
+
+struct ImportedBookmarkEntry {
+ ImportedBookmarkEntry();
+ ~ImportedBookmarkEntry();
+ bool operator==(const ImportedBookmarkEntry& other) const;
tfarina 2013/05/10 19:58:30 nit: add blank line above.
Avi (use Gerrit) 2013/05/10 20:29:37 Done.
+
+ bool in_toolbar;
+ bool is_folder;
+ GURL url;
+ std::vector<string16> path;
tfarina 2013/05/10 19:58:30 base::string16
Avi (use Gerrit) 2013/05/10 20:29:37 Done.
+ base::string16 title;
+ base::Time creation_time;
+};
+
+#endif // CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_

Powered by Google App Engine
This is Rietveld 408576698