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

Side by Side Diff: components/user_manager/user.h

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr Created 4 years, 8 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 COMPONENTS_USER_MANAGER_USER_H_ 5 #ifndef COMPONENTS_USER_MANAGER_USER_H_
6 #define COMPONENTS_USER_MANAGER_USER_H_ 6 #define COMPONENTS_USER_MANAGER_USER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string16.h" 14 #include "base/strings/string16.h"
14 #include "components/signin/core/account_id/account_id.h" 15 #include "components/signin/core/account_id/account_id.h"
15 #include "components/user_manager/user_image/user_image.h" 16 #include "components/user_manager/user_image/user_image.h"
16 #include "components/user_manager/user_info.h" 17 #include "components/user_manager/user_info.h"
17 #include "components/user_manager/user_manager_export.h" 18 #include "components/user_manager/user_manager_export.h"
18 #include "components/user_manager/user_type.h" 19 #include "components/user_manager/user_type.h"
19 #include "third_party/skia/include/core/SkBitmap.h" 20 #include "third_party/skia/include/core/SkBitmap.h"
20 #include "ui/gfx/image/image_skia.h" 21 #include "ui/gfx/image/image_skia.h"
21 22
22 namespace chromeos { 23 namespace chromeos {
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 301
301 DISALLOW_COPY_AND_ASSIGN(User); 302 DISALLOW_COPY_AND_ASSIGN(User);
302 }; 303 };
303 304
304 // List of known users. 305 // List of known users.
305 using UserList = std::vector<User*>; 306 using UserList = std::vector<User*>;
306 307
307 } // namespace user_manager 308 } // namespace user_manager
308 309
309 #endif // COMPONENTS_USER_MANAGER_USER_H_ 310 #endif // COMPONENTS_USER_MANAGER_USER_H_
OLDNEW
« no previous file with comments | « components/history/core/test/thumbnail.cc ('k') | components/user_manager/user_image/user_image.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698