Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 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 CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_ | |
| 6 #define CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/string16.h" | |
| 11 #include "base/time.h" | |
| 12 #include "googleurl/src/gurl.h" | |
| 13 | |
| 14 struct ImportedBookmarkEntry { | |
| 15 ImportedBookmarkEntry(); | |
| 16 ~ImportedBookmarkEntry(); | |
|
gab
2013/05/10 20:37:57
I don't think you need to declare a no-op destruct
Avi (use Gerrit)
2013/05/10 21:34:53
../../chrome/browser/bookmarks/imported_bookmark_e
| |
| 17 bool operator==(const ImportedBookmarkEntry& other) const; | |
| 18 | |
| 19 bool in_toolbar; | |
| 20 bool is_folder; | |
| 21 GURL url; | |
| 22 std::vector<string16> path; | |
| 23 base::string16 title; | |
| 24 base::Time creation_time; | |
| 25 }; | |
| 26 | |
| 27 #endif // CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_ | |
| OLD | NEW |