This source file includes following definitions.
- is_folder
#include "chrome/common/importer/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);
}