| Index: chrome/browser/bookmarks/imported_bookmark_entry.cc
|
| diff --git a/chrome/browser/bookmarks/imported_bookmark_entry.cc b/chrome/browser/bookmarks/imported_bookmark_entry.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f6a30a868bcda6e727c81ecc98bbdd5d2442b585
|
| --- /dev/null
|
| +++ b/chrome/browser/bookmarks/imported_bookmark_entry.cc
|
| @@ -0,0 +1,21 @@
|
| +// 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.
|
| +
|
| +#include "chrome/browser/bookmarks/imported_bookmark_entry.h"
|
| +
|
| +ImportedBookmarkEntry::ImportedBookmarkEntry()
|
| + : in_toolbar(false),
|
| + is_folder(false) {}
|
| +
|
| +ImportedBookmarkEntry::~ImportedBookmarkEntry() {}
|
| +
|
| +bool ImportedBookmarkEntry::operator==(
|
| + const ImportedBookmarkEntry& other) const {
|
| + return (in_toolbar == other.in_toolbar &&
|
| + is_folder == other.is_folder &&
|
| + url == other.url &&
|
| + path == other.path &&
|
| + title == other.title &&
|
| + creation_time == other.creation_time);
|
| +}
|
|
|