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

Side by Side Diff: components/sync_driver/revisit/offset_tab_matcher.cc

Issue 1361613002: Move all core files in //components/sessions into core/ subdir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/sync_driver/revisit/offset_tab_matcher.h" 5 #include "components/sync_driver/revisit/offset_tab_matcher.h"
6 6
7 #include "base/metrics/histogram_macros.h" 7 #include "base/metrics/histogram_macros.h"
8 #include "base/metrics/sparse_histogram.h" 8 #include "base/metrics/sparse_histogram.h"
9 #include "components/sessions/serialized_navigation_entry.h" 9 #include "components/sessions/core/serialized_navigation_entry.h"
10 10
11 namespace sync_driver { 11 namespace sync_driver {
12 12
13 namespace { 13 namespace {
14 14
15 // This is an upper bound of the max size of positive offset we will emit 15 // This is an upper bound of the max size of positive offset we will emit
16 // correct metrics for. Anything larger than this will be clamped to this value. 16 // correct metrics for. Anything larger than this will be clamped to this value.
17 // This value doesn't exactly correspond to what we actually expect, this value 17 // This value doesn't exactly correspond to what we actually expect, this value
18 // is currently larger than expected. This value is more for the safety of our 18 // is currently larger than expected. This value is more for the safety of our
19 // sparse histogram usage. It is assumed that the max negative offset is 19 // sparse histogram usage. It is assumed that the max negative offset is
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 transition, 70 transition,
71 PageVisitObserver::kTransitionTypeLast); 71 PageVisitObserver::kTransitionTypeLast);
72 } 72 }
73 } 73 }
74 74
75 int OffsetTabMatcher::Clamp(const int input, const int lower, const int upper) { 75 int OffsetTabMatcher::Clamp(const int input, const int lower, const int upper) {
76 return std::max(lower, std::min(upper, input)); 76 return std::max(lower, std::min(upper, input));
77 } 77 }
78 78
79 } // namespace sync_driver 79 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync_driver/revisit/offset_tab_matcher.h ('k') | components/sync_driver/revisit/offset_tab_matcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698