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

Side by Side Diff: components/signin/core/browser/fake_account_fetcher_service.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_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ 5 #ifndef COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_
6 #define COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ 6 #define COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_
7 7
8 #include "base/macros.h"
8 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
9 #include "components/signin/core/browser/account_fetcher_service.h" 10 #include "components/signin/core/browser/account_fetcher_service.h"
10 11
11 class KeyedService; 12 class KeyedService;
12 13
13 namespace content { 14 namespace content {
14 class BrowserContext; 15 class BrowserContext;
15 } 16 }
16 17
17 // AccountTrackerService is a KeyedService that retrieves and caches GAIA 18 // AccountTrackerService is a KeyedService that retrieves and caches GAIA
(...skipping 24 matching lines...) Expand all
42 private: 43 private:
43 void StartFetchingUserInfo(const std::string& account_id) override; 44 void StartFetchingUserInfo(const std::string& account_id) override;
44 void StartFetchingChildInfo(const std::string& account_id) override; 45 void StartFetchingChildInfo(const std::string& account_id) override;
45 void SendRefreshTokenAnnotationRequest( 46 void SendRefreshTokenAnnotationRequest(
46 const std::string& account_id) override; 47 const std::string& account_id) override;
47 48
48 DISALLOW_COPY_AND_ASSIGN(FakeAccountFetcherService); 49 DISALLOW_COPY_AND_ASSIGN(FakeAccountFetcherService);
49 }; 50 };
50 51
51 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_ 52 #endif // COMPONENTS_SIGNIN_CORE_BROWSER_FAKE_ACCOUNT_FETCHER_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698