blob: abb9ea0ba3e43cb556222c99f1d1d65e0e0fdd6d [file] [log] [blame]
// 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_COMMON_IMPORTER_IMPORTED_BOOKMARK_ENTRY_H_
#define CHROME_COMMON_IMPORTER_IMPORTED_BOOKMARK_ENTRY_H_
#include <vector>
#include "base/strings/string16.h"
#include "base/time/time.h"
#include "url/gurl.h"
struct ImportedBookmarkEntry {
ImportedBookmarkEntry();
ImportedBookmarkEntry(const ImportedBookmarkEntry& other);
~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_COMMON_IMPORTER_IMPORTED_BOOKMARK_ENTRY_H_