bookmark_client.cc 784 B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/bookmarks/browser/bookmark_client.h"
  5. #include "base/notreached.h"
  6. namespace bookmarks {
  7. void BookmarkClient::Init(BookmarkModel* model) {}
  8. base::CancelableTaskTracker::TaskId BookmarkClient::GetFaviconImageForPageURL(
  9. const GURL& page_url,
  10. favicon_base::FaviconImageCallback callback,
  11. base::CancelableTaskTracker* tracker) {
  12. return base::CancelableTaskTracker::kBadTaskId;
  13. }
  14. bool BookmarkClient::SupportsTypedCountForUrls() {
  15. return false;
  16. }
  17. void BookmarkClient::GetTypedCountForUrls(
  18. UrlTypedCountMap* url_typed_count_map) {
  19. NOTREACHED();
  20. }
  21. } // namespace bookmarks