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

Side by Side Diff: media/capture/video/video_capture_device.h

Issue 2539543002: RELAND: ImageCapture: move image_capture.mojom from media/mojo/interfaces/ to media/capture/mojo/ (Closed)
Patch Set: https://codereview.chromium.org/2526953002 Created 4 years 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
« no previous file with comments | « media/capture/video/blob_utils.h ('k') | media/mojo/interfaces/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // VideoCaptureDevice is the abstract base class for realizing video capture 5 // VideoCaptureDevice is the abstract base class for realizing video capture
6 // device support in Chromium. It provides the interface for OS dependent 6 // device support in Chromium. It provides the interface for OS dependent
7 // implementations. 7 // implementations.
8 // The class is created and functions are invoked on a thread owned by 8 // The class is created and functions are invoked on a thread owned by
9 // VideoCaptureManager. Capturing is done on other threads, depending on the OS 9 // VideoCaptureManager. Capturing is done on other threads, depending on the OS
10 // specific implementation. 10 // specific implementation.
(...skipping 10 matching lines...) Expand all
21 21
22 #include "base/callback.h" 22 #include "base/callback.h"
23 #include "base/files/file.h" 23 #include "base/files/file.h"
24 #include "base/logging.h" 24 #include "base/logging.h"
25 #include "base/memory/ref_counted.h" 25 #include "base/memory/ref_counted.h"
26 #include "base/single_thread_task_runner.h" 26 #include "base/single_thread_task_runner.h"
27 #include "base/time/time.h" 27 #include "base/time/time.h"
28 #include "build/build_config.h" 28 #include "build/build_config.h"
29 #include "media/base/video_frame.h" 29 #include "media/base/video_frame.h"
30 #include "media/capture/capture_export.h" 30 #include "media/capture/capture_export.h"
31 #include "media/capture/mojo/image_capture.mojom.h"
31 #include "media/capture/video/scoped_result_callback.h" 32 #include "media/capture/video/scoped_result_callback.h"
32 #include "media/capture/video/video_capture_device_descriptor.h" 33 #include "media/capture/video/video_capture_device_descriptor.h"
33 #include "media/capture/video_capture_types.h" 34 #include "media/capture/video_capture_types.h"
34 #include "media/mojo/interfaces/image_capture.mojom.h"
35 #include "mojo/public/cpp/bindings/array.h" 35 #include "mojo/public/cpp/bindings/array.h"
36 #include "ui/gfx/gpu_memory_buffer.h" 36 #include "ui/gfx/gpu_memory_buffer.h"
37 37
38 namespace tracked_objects { 38 namespace tracked_objects {
39 class Location; 39 class Location;
40 } // namespace tracked_objects 40 } // namespace tracked_objects
41 41
42 namespace media { 42 namespace media {
43 43
44 class CAPTURE_EXPORT VideoCaptureDevice { 44 class CAPTURE_EXPORT VideoCaptureDevice {
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 230
231 private: 231 private:
232 // Gets the power line frequency from the current system time zone if this is 232 // Gets the power line frequency from the current system time zone if this is
233 // defined, otherwise returns 0. 233 // defined, otherwise returns 0.
234 PowerLineFrequency GetPowerLineFrequencyForLocation() const; 234 PowerLineFrequency GetPowerLineFrequencyForLocation() const;
235 }; 235 };
236 236
237 } // namespace media 237 } // namespace media
238 238
239 #endif // MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_DEVICE_H_ 239 #endif // MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_DEVICE_H_
OLDNEW
« no previous file with comments | « media/capture/video/blob_utils.h ('k') | media/mojo/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698