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

Side by Side Diff: chrome/browser/supervised_user/legacy/supervised_user_registration_utility_stub.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_STUB_H_ 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_STUB_H_
6 #define CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_STUB_H_ 6 #define CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_STUB_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti lity.h" 13 #include "chrome/browser/supervised_user/legacy/supervised_user_registration_uti lity.h"
14 #include "google_apis/gaia/google_service_auth_error.h" 14 #include "google_apis/gaia/google_service_auth_error.h"
15 15
16 class SupervisedUserRegistrationUtilityStub 16 class SupervisedUserRegistrationUtilityStub
17 : public SupervisedUserRegistrationUtility { 17 : public SupervisedUserRegistrationUtility {
18 public: 18 public:
19 SupervisedUserRegistrationUtilityStub(); 19 SupervisedUserRegistrationUtilityStub();
20 ~SupervisedUserRegistrationUtilityStub() override; 20 ~SupervisedUserRegistrationUtilityStub() override;
21 21
(...skipping 16 matching lines...) Expand all
38 RegistrationCallback callback_; 38 RegistrationCallback callback_;
39 bool register_was_called_; 39 bool register_was_called_;
40 std::string supervised_user_id_; 40 std::string supervised_user_id_;
41 base::string16 display_name_; 41 base::string16 display_name_;
42 std::string master_key_; 42 std::string master_key_;
43 43
44 DISALLOW_COPY_AND_ASSIGN(SupervisedUserRegistrationUtilityStub); 44 DISALLOW_COPY_AND_ASSIGN(SupervisedUserRegistrationUtilityStub);
45 }; 45 };
46 46
47 #endif // CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UT ILITY_STUB_H_ 47 #endif // CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UT ILITY_STUB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698