OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/bookmarks/browser/bookmark_client.h" | 5 #include "components/bookmarks/browser/bookmark_client.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace bookmarks { | 9 namespace bookmarks { |
10 | 10 |
11 base::CancelableTaskTracker::TaskId BookmarkClient::GetFaviconImageForPageURL( | 11 BookmarkClient::BookmarkClient() { |
12 const GURL& page_url, | |
13 favicon_base::IconType type, | |
14 const favicon_base::FaviconImageCallback& callback, | |
15 base::CancelableTaskTracker* tracker) { | |
16 return base::CancelableTaskTracker::kBadTaskId; | |
17 } | 12 } |
18 | 13 |
19 bool BookmarkClient::SupportsTypedCountForNodes() { | 14 BookmarkClient::~BookmarkClient() { |
20 return false; | |
21 } | |
22 | |
23 void BookmarkClient::GetTypedCountForNodes( | |
24 const NodeSet& nodes, | |
25 NodeTypedCountPairs* node_typed_count_pairs) { | |
26 NOTREACHED(); | |
27 } | 15 } |
28 | 16 |
29 } // namespace bookmarks | 17 } // namespace bookmarks |
OLD | NEW |