| OLD | NEW |
| 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_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UTIL_
H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UTIL_
H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UTIL_
H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UTIL_
H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/run_loop.h" | 13 #include "base/run_loop.h" |
| 14 #include "chrome/browser/image_decoder.h" | 14 #include "chrome/browser/image_decoder.h" |
| 15 | 15 |
| 16 class SKBitmap; | |
| 17 | |
| 18 namespace base { | 16 namespace base { |
| 19 class FilePath; | 17 class FilePath; |
| 20 } | 18 } |
| 21 | 19 |
| 22 namespace gfx { | 20 namespace gfx { |
| 23 class ImageSkia; | 21 class ImageSkia; |
| 24 } | 22 } |
| 25 | 23 |
| 26 namespace chromeos { | 24 namespace chromeos { |
| 27 namespace test { | 25 namespace test { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 49 | 47 |
| 50 std::unique_ptr<gfx::ImageSkia> decoded_image_; | 48 std::unique_ptr<gfx::ImageSkia> decoded_image_; |
| 51 | 49 |
| 52 DISALLOW_COPY_AND_ASSIGN(ImageLoader); | 50 DISALLOW_COPY_AND_ASSIGN(ImageLoader); |
| 53 }; | 51 }; |
| 54 | 52 |
| 55 } // namespace test | 53 } // namespace test |
| 56 } // namespace chromeos | 54 } // namespace chromeos |
| 57 | 55 |
| 58 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UT
IL_H_ | 56 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USERS_AVATAR_USER_IMAGE_MANAGER_TEST_UT
IL_H_ |
| OLD | NEW |