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

Side by Side Diff: chrome/browser/safe_browsing/chunk_range.cc

Issue 6317016: Change UTF8ToUTF16 to accept const StringPiece&. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // Implementation of ChunkRange class. 5 // Implementation of ChunkRange class.
6 6
7 #include <algorithm>
8
7 #include "chrome/browser/safe_browsing/chunk_range.h" 9 #include "chrome/browser/safe_browsing/chunk_range.h"
8 10
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
11 #include "base/string_split.h" 13 #include "base/string_split.h"
12 #include "base/string_util.h" 14 #include "base/string_util.h"
13 15
14 ChunkRange::ChunkRange(int start) : start_(start), stop_(start) { 16 ChunkRange::ChunkRange(int start) : start_(start), stop_(start) {
15 } 17 }
16 18
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 107
106 // Adjust our mid point. 108 // Adjust our mid point.
107 if (chunk.stop() < chunk_number) 109 if (chunk.stop() < chunk_number)
108 low = mid + 1; 110 low = mid + 1;
109 else 111 else
110 high = mid - 1; 112 high = mid - 1;
111 } 113 }
112 114
113 return false; 115 return false;
114 } 116 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/default_apps.cc ('k') | chrome/browser/safe_browsing/filter_false_positive_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698