// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_ #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_ #include <stdint.h> #include <map> #include <memory> #include <set> #include <string> #include "base/hash/md5.h" #include "base/uuid.h" #include "base/values.h" #include "components/bookmarks/browser/bookmark_node.h" namespace bookmarks { // BookmarkCodec is responsible for encoding and decoding the BookmarkModel // into JSON values. The encoded values are written to disk via the // BookmarkStorage. class BookmarkCodec { … }; } // namespace bookmarks #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_CODEC_H_