Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: components/bookmarks/browser/bookmark_client.cc

Issue 2883523002: Reduce the memory usage of bookmarks storage (Closed)
Patch Set: Move to client. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 13 matching lines...) Expand all
24 24
25 bool BookmarkClient::SupportsTypedCountForUrls() { 25 bool BookmarkClient::SupportsTypedCountForUrls() {
26 return false; 26 return false;
27 } 27 }
28 28
29 void BookmarkClient::GetTypedCountForUrls( 29 void BookmarkClient::GetTypedCountForUrls(
30 UrlTypedCountMap* url_typed_count_map) { 30 UrlTypedCountMap* url_typed_count_map) {
31 NOTREACHED(); 31 NOTREACHED();
32 } 32 }
33 33
34 std::vector<std::string> BookmarkClient::ExecludedMetaKeys() {
35 return std::vector<std::string>();
36 }
37
34 } // namespace bookmarks 38 } // namespace bookmarks
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698