| 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..2a54dcc8799fbacfce26d70a224e69f89bb40bdd
|
| --- /dev/null
|
| +++ b/chrome/browser/bookmarks/imported_bookmark_entry.h
|
| @@ -0,0 +1,29 @@
|
| +// 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/basictypes.h"
|
| +#include "base/string16.h"
|
| +#include "base/time.h"
|
| +#include "googleurl/src/gurl.h"
|
| +
|
| +struct ImportedBookmarkEntry {
|
| + ImportedBookmarkEntry();
|
| + ~ImportedBookmarkEntry();
|
| +
|
| + bool operator==(const ImportedBookmarkEntry& other) const;
|
| +
|
| + bool in_toolbar;
|
| + bool is_folder;
|
| + GURL url;
|
| + std::vector<base::string16> path;
|
| + base::string16 title;
|
| + base::Time creation_time;
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_BOOKMARKS_IMPORTED_BOOKMARK_ENTRY_H_
|
|
|