| 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
er2.h" | 5 #include "chrome/browser/ui/webui/options2/chromeos/change_picture_options_handl
er.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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 OnPhotoAccepted(user_photo_); | 413 OnPhotoAccepted(user_photo_); |
| 414 } | 414 } |
| 415 | 415 |
| 416 void ChangePictureOptionsHandler::OnDecodeImageFailed( | 416 void ChangePictureOptionsHandler::OnDecodeImageFailed( |
| 417 const ImageDecoder* decoder) { | 417 const ImageDecoder* decoder) { |
| 418 NOTREACHED() << "Failed to decode PNG image from WebUI"; | 418 NOTREACHED() << "Failed to decode PNG image from WebUI"; |
| 419 } | 419 } |
| 420 | 420 |
| 421 } // namespace options2 | 421 } // namespace options2 |
| 422 } // namespace chromeos | 422 } // namespace chromeos |
| OLD | NEW |