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

Side by Side Diff: chrome/browser/internal_auth.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/internal_auth.h" 5 #include "chrome/browser/internal_auth.h"
6 6
7 #include <stddef.h>
7 #include <stdint.h> 8 #include <stdint.h>
8 9
9 #include <algorithm> 10 #include <algorithm>
10 #include <deque> 11 #include <deque>
11 #include <limits> 12 #include <limits>
12 13
13 #include "base/base64.h" 14 #include "base/base64.h"
14 #include "base/lazy_instance.h" 15 #include "base/lazy_instance.h"
16 #include "base/macros.h"
15 #include "base/rand_util.h" 17 #include "base/rand_util.h"
16 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/string_split.h" 19 #include "base/strings/string_split.h"
18 #include "base/strings/string_util.h" 20 #include "base/strings/string_util.h"
19 #include "base/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
20 #include "base/threading/thread_checker.h" 22 #include "base/threading/thread_checker.h"
21 #include "base/time/time.h" 23 #include "base/time/time.h"
22 #include "base/values.h" 24 #include "base/values.h"
23 #include "crypto/hmac.h" 25 #include "crypto/hmac.h"
24 26
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 const std::string& domain, const VarValueMap& var_value_map) { 469 const std::string& domain, const VarValueMap& var_value_map) {
468 return g_generation_service.Get().GeneratePassport(domain, var_value_map, 0); 470 return g_generation_service.Get().GeneratePassport(domain, var_value_map, 0);
469 } 471 }
470 472
471 // static 473 // static
472 void InternalAuthGeneration::GenerateNewKey() { 474 void InternalAuthGeneration::GenerateNewKey() {
473 g_generation_service.Get().GenerateNewKey(); 475 g_generation_service.Get().GenerateNewKey();
474 } 476 }
475 477
476 } // namespace chrome 478 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/interests/android/interests_service.cc ('k') | chrome/browser/internal_auth_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698