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

Side by Side Diff: third_party/WebKit/Source/modules/imagecapture/PhotoCapabilities.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698