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

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

Issue 921683004: Revert: Issue 545053002: Add still image capture interface for VideoCaptureDevice. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased (media/video/capture/video_capture_types.* went to media/base) Created 5 years, 10 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
« no previous file with comments | « media/video/capture/video_capture_device.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ 5 #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_
6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ 6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_
7 7
8 #include "base/threading/thread_checker.h" 8 #include "base/threading/thread_checker.h"
9 #include "media/video/capture/video_capture_device.h" 9 #include "media/video/capture/video_capture_device.h"
10 10
(...skipping 20 matching lines...) Expand all
31 void(scoped_ptr<media::VideoCaptureDevice::Names>)>& callback); 31 void(scoped_ptr<media::VideoCaptureDevice::Names>)>& callback);
32 32
33 // Gets the supported formats of a particular device attached to the system. 33 // Gets the supported formats of a particular device attached to the system.
34 // This method should be called before allocating or starting a device. In 34 // This method should be called before allocating or starting a device. In
35 // case format enumeration is not supported, or there was a problem, the 35 // case format enumeration is not supported, or there was a problem, the
36 // formats array will be empty. 36 // formats array will be empty.
37 virtual void GetDeviceSupportedFormats( 37 virtual void GetDeviceSupportedFormats(
38 const VideoCaptureDevice::Name& device, 38 const VideoCaptureDevice::Name& device,
39 VideoCaptureFormats* supported_formats) = 0; 39 VideoCaptureFormats* supported_formats) = 0;
40 40
41 // Gets the supported formats for still image of a particular device attached
42 // to the system. In case format enumeration is not supported, or there was
43 // a problem, the formats array will be empty.
44 virtual void GetDeviceSupportedImageFormats(
45 const VideoCaptureDevice::Name& device,
46 ImageCaptureFormats* supported_formats) {}
47
48 protected: 41 protected:
49 // Gets the names of all video capture devices connected to this computer. 42 // Gets the names of all video capture devices connected to this computer.
50 // Used by the default implementation of EnumerateDeviceNames(). 43 // Used by the default implementation of EnumerateDeviceNames().
51 virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) = 0; 44 virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) = 0;
52 45
53 base::ThreadChecker thread_checker_; 46 base::ThreadChecker thread_checker_;
54 47
55 private: 48 private:
56 static VideoCaptureDeviceFactory* CreateVideoCaptureDeviceFactory( 49 static VideoCaptureDeviceFactory* CreateVideoCaptureDeviceFactory(
57 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner); 50 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
58 51
59 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceFactory); 52 DISALLOW_COPY_AND_ASSIGN(VideoCaptureDeviceFactory);
60 }; 53 };
61 54
62 } // namespace media 55 } // namespace media
63 56
64 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ 57 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_DEVICE_FACTORY_H_
OLDNEW
« no previous file with comments | « media/video/capture/video_capture_device.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698