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

Side by Side Diff: components/password_manager/core/browser/affiliation_backend.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/containers/scoped_ptr_hash_map.h" 13 #include "base/containers/scoped_ptr_hash_map.h"
12 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
13 #include "base/macros.h" 15 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
15 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
16 #include "components/password_manager/core/browser/affiliation_fetch_throttler_d elegate.h" 18 #include "components/password_manager/core/browser/affiliation_fetch_throttler_d elegate.h"
17 #include "components/password_manager/core/browser/affiliation_fetcher_delegate. h" 19 #include "components/password_manager/core/browser/affiliation_fetcher_delegate. h"
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 base::ScopedPtrHashMap<FacetURI, scoped_ptr<FacetManager>> facet_managers_; 155 base::ScopedPtrHashMap<FacetURI, scoped_ptr<FacetManager>> facet_managers_;
154 156
155 base::WeakPtrFactory<AffiliationBackend> weak_ptr_factory_; 157 base::WeakPtrFactory<AffiliationBackend> weak_ptr_factory_;
156 158
157 DISALLOW_COPY_AND_ASSIGN(AffiliationBackend); 159 DISALLOW_COPY_AND_ASSIGN(AffiliationBackend);
158 }; 160 };
159 161
160 } // namespace password_manager 162 } // namespace password_manager
161 163
162 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_ 164 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_AFFILIATION_BACKEND_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698