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

Unified Diff: components/bookmarks/core/browser/bookmark_match.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 side-by-side diff with in-line comments
Download patch
Index: components/bookmarks/core/browser/bookmark_match.cc
diff --git a/components/bookmarks/core/browser/bookmark_match.cc b/components/bookmarks/core/browser/bookmark_match.cc
deleted file mode 100644
index 6a3d303ff79fdb750b18e90c50114985203fb913..0000000000000000000000000000000000000000
--- a/components/bookmarks/core/browser/bookmark_match.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/bookmarks/core/browser/bookmark_match.h"
-
-#include "base/logging.h"
-#include "base/strings/string16.h"
-
-BookmarkMatch::BookmarkMatch() : node(NULL) {}
-
-BookmarkMatch::~BookmarkMatch() {}
-
-// static
-std::vector<size_t> BookmarkMatch::OffsetsFromMatchPositions(
- const MatchPositions& match_positions) {
- std::vector<size_t> offsets;
- for (MatchPositions::const_iterator i = match_positions.begin();
- i != match_positions.end(); ++i) {
- offsets.push_back(i->first);
- offsets.push_back(i->second);
- }
- return offsets;
-}
-
-// static
-BookmarkMatch::MatchPositions BookmarkMatch::ReplaceOffsetsInMatchPositions(
- const MatchPositions& match_positions,
- const std::vector<size_t>& offsets) {
- DCHECK_EQ(2 * match_positions.size(), offsets.size());
- MatchPositions new_match_positions;
- std::vector<size_t>::const_iterator offset_iter = offsets.begin();
- for (MatchPositions::const_iterator match_iter = match_positions.begin();
- match_iter != match_positions.end(); ++match_iter, ++offset_iter) {
- const size_t begin = *offset_iter;
- ++offset_iter;
- const size_t end = *offset_iter;
- if ((begin != base::string16::npos) && (end != base::string16::npos)) {
- const MatchPosition new_match_position(begin, end);
- new_match_positions.push_back(new_match_position);
- }
- }
- return new_match_positions;
-}
« no previous file with comments | « components/bookmarks/core/browser/bookmark_match.h ('k') | components/bookmarks/core/browser/bookmark_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698