OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/ui/webui/options2/chromeos/change_picture_options_handl
er.h" | 5 #include "chrome/browser/ui/webui/options/chromeos/change_picture_options_handle
r.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "chrome/browser/chromeos/login/camera_detector.h" | 15 #include "chrome/browser/chromeos/login/camera_detector.h" |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 OnPhotoAccepted(user_photo_); | 441 OnPhotoAccepted(user_photo_); |
442 } | 442 } |
443 | 443 |
444 void ChangePictureOptionsHandler::OnDecodeImageFailed( | 444 void ChangePictureOptionsHandler::OnDecodeImageFailed( |
445 const ImageDecoder* decoder) { | 445 const ImageDecoder* decoder) { |
446 NOTREACHED() << "Failed to decode PNG image from WebUI"; | 446 NOTREACHED() << "Failed to decode PNG image from WebUI"; |
447 } | 447 } |
448 | 448 |
449 } // namespace options | 449 } // namespace options |
450 } // namespace chromeos | 450 } // namespace chromeos |
OLD | NEW |