| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 PhotoCapabilities_h | 5 #ifndef PhotoCapabilities_h |
| 6 #define PhotoCapabilities_h | 6 #define PhotoCapabilities_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "media/capture/mojo/image_capture.mojom-blink.h" | 9 #include "media/capture/mojo/image_capture.mojom-blink.h" |
| 10 #include "modules/imagecapture/MediaSettingsRange.h" | 10 #include "modules/imagecapture/MediaSettingsRange.h" |
| 11 #include "wtf/Vector.h" | 11 #include "platform/wtf/Vector.h" |
| 12 #include "wtf/text/WTFString.h" | 12 #include "platform/wtf/text/WTFString.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class PhotoCapabilities final | 16 class PhotoCapabilities final |
| 17 : public GarbageCollectedFinalized<PhotoCapabilities>, | 17 : public GarbageCollectedFinalized<PhotoCapabilities>, |
| 18 public ScriptWrappable { | 18 public ScriptWrappable { |
| 19 DEFINE_WRAPPERTYPEINFO(); | 19 DEFINE_WRAPPERTYPEINFO(); |
| 20 | 20 |
| 21 public: | 21 public: |
| 22 static PhotoCapabilities* Create(); | 22 static PhotoCapabilities* Create(); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 46 | 46 |
| 47 Member<MediaSettingsRange> image_height_; | 47 Member<MediaSettingsRange> image_height_; |
| 48 Member<MediaSettingsRange> image_width_; | 48 Member<MediaSettingsRange> image_width_; |
| 49 Vector<media::mojom::blink::FillLightMode> fill_light_modes_; | 49 Vector<media::mojom::blink::FillLightMode> fill_light_modes_; |
| 50 media::mojom::blink::RedEyeReduction red_eye_reduction_; | 50 media::mojom::blink::RedEyeReduction red_eye_reduction_; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace blink | 53 } // namespace blink |
| 54 | 54 |
| 55 #endif // PhotoCapabilities_h | 55 #endif // PhotoCapabilities_h |
| OLD | NEW |