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

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

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 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/core/browser/bookmark_codec.h" 5 #include "components/bookmarks/browser/bookmark_codec.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/json/json_string_value_serializer.h" 9 #include "base/json/json_string_value_serializer.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "components/bookmarks/core/browser/bookmark_model.h" 13 #include "components/bookmarks/browser/bookmark_model.h"
14 #include "grit/component_strings.h" 14 #include "grit/component_strings.h"
15 #include "ui/base/l10n/l10n_util.h" 15 #include "ui/base/l10n/l10n_util.h"
16 #include "url/gurl.h" 16 #include "url/gurl.h"
17 17
18 using base::Time; 18 using base::Time;
19 19
20 const char* BookmarkCodec::kRootsKey = "roots"; 20 const char* BookmarkCodec::kRootsKey = "roots";
21 const char* BookmarkCodec::kRootFolderNameKey = "bookmark_bar"; 21 const char* BookmarkCodec::kRootFolderNameKey = "bookmark_bar";
22 const char* BookmarkCodec::kOtherBookmarkFolderNameKey = "other"; 22 const char* BookmarkCodec::kOtherBookmarkFolderNameKey = "other";
23 // The value is left as 'synced' for historical reasons. 23 // The value is left as 'synced' for historical reasons.
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 480
481 void BookmarkCodec::InitializeChecksum() { 481 void BookmarkCodec::InitializeChecksum() {
482 base::MD5Init(&md5_context_); 482 base::MD5Init(&md5_context_);
483 } 483 }
484 484
485 void BookmarkCodec::FinalizeChecksum() { 485 void BookmarkCodec::FinalizeChecksum() {
486 base::MD5Digest digest; 486 base::MD5Digest digest;
487 base::MD5Final(&digest, &md5_context_); 487 base::MD5Final(&digest, &md5_context_);
488 computed_checksum_ = base::MD5DigestToBase16(digest); 488 computed_checksum_ = base::MD5DigestToBase16(digest);
489 } 489 }
OLDNEW
« no previous file with comments | « components/bookmarks/browser/bookmark_codec.h ('k') | components/bookmarks/browser/bookmark_codec_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698