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

Side by Side Diff: net/spdy/spdy_alt_svc_wire_format.cc

Issue 1610023003: Revert of Allow std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « net/server/web_socket_encoder.cc ('k') | net/ssl/client_cert_store_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "net/spdy/spdy_alt_svc_wire_format.h" 5 #include "net/spdy/spdy_alt_svc_wire_format.h"
6 6
7 #include <algorithm>
8 #include <limits> 7 #include <limits>
9 #include <string> 8 #include <string>
10 9
11 #include "base/logging.h" 10 #include "base/logging.h"
12 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
13 12
14 namespace net { 13 namespace net {
15 14
16 using base::StringPiece; 15 using base::StringPiece;
17 16
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 ++c; 386 ++c;
388 double place_value = 0.1; 387 double place_value = 0.1;
389 for (; c != end && isdigit(*c); ++c) { 388 for (; c != end && isdigit(*c); ++c) {
390 *probability += place_value * (*c - '0'); 389 *probability += place_value * (*c - '0');
391 place_value *= 0.1; 390 place_value *= 0.1;
392 } 391 }
393 return (c == end && *probability <= 1.0); 392 return (c == end && *probability <= 1.0);
394 } 393 }
395 394
396 } // namespace net 395 } // namespace net
OLDNEW
« no previous file with comments | « net/server/web_socket_encoder.cc ('k') | net/ssl/client_cert_store_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698