summaryrefslogtreecommitdiffstats
path: root/chrome/browser/bookmarks/imported_bookmark_entry.h
blob: 73bf0a9be9396fae63afaba47fa9132c70a2ffda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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/strings/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_