Searched refs:DeviceInfo (Results 1 - 25 of 77) sorted by relevance

1234

/external/chromium_org/components/sync_driver/
H A Ddevice_info.cc10 DeviceInfo::DeviceInfo(const std::string& guid, function in class:sync_driver::DeviceInfo
24 DeviceInfo::~DeviceInfo() { }
26 const std::string& DeviceInfo::guid() const {
30 const std::string& DeviceInfo::client_name() const {
34 const std::string& DeviceInfo::chrome_version() const {
38 const std::string& DeviceInfo::sync_user_agent() const {
42 const std::string& DeviceInfo::public_id() const {
46 sync_pb::SyncEnums::DeviceType DeviceInfo
[all...]
H A Ddevice_info_tracker.h14 // Interface for tracking synced DeviceInfo.
25 // Gets DeviceInfo the synced device with specified client ID.
28 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
30 // Gets DeviceInfo for all synced devices (including the local one).
31 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const = 0;
32 // Registers an observer to be called on syncing any updated DeviceInfo.
H A Dlocal_device_info_provider.h13 class DeviceInfo;
28 virtual const DeviceInfo* GetLocalDeviceInfo() const = 0;
H A Ddevice_info.h21 class DeviceInfo { class in namespace:sync_driver
23 DeviceInfo(const std::string& guid,
29 ~DeviceInfo();
65 bool Equals(const DeviceInfo& other) const;
73 // Converts the |DeviceInfo| values to a JS friendly DictionaryValue,
96 DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
H A Ddevice_info_sync_service.h41 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
43 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const OVERRIDE;
53 // Create SyncData from local DeviceInfo and |local_device_backup_time_|.
54 syncer::SyncData CreateLocalData(const DeviceInfo* info);
59 // Allocate new DeviceInfo from SyncData.
60 static DeviceInfo* CreateDeviceInfo(const syncer::SyncData sync_data);
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
H A Did_mapping_helper.h18 class DeviceInfo;
48 std::vector<sync_driver::DeviceInfo*>* device_info,
53 scoped_ptr<sync_driver::DeviceInfo> GetDeviceInfoForClientId(
H A Dsigned_in_devices_api.h15 class DeviceInfo;
31 ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
35 ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
H A Dsigned_in_devices_api.cc20 using sync_driver::DeviceInfo;
54 ScopedVector<DeviceInfo> GetAllSignedInDevices(
59 ScopedVector<DeviceInfo> devices = device_tracker->GetAllDeviceInfo();
80 ScopedVector<DeviceInfo> GetAllSignedInDevices(
89 return ScopedVector<DeviceInfo>().Pass();
97 scoped_ptr<DeviceInfo> GetLocalDeviceInfo(const std::string& extension_id,
101 return scoped_ptr<DeviceInfo>();
107 scoped_ptr<DeviceInfo> device = GetDeviceInfoForClientId(guid,
121 scoped_ptr<DeviceInfo> device =
131 ScopedVector<DeviceInfo> device
[all...]
H A Did_mapping_helper_unittest.cc16 using sync_driver::DeviceInfo;
32 ScopedVector<DeviceInfo> devices;
34 devices.push_back(new DeviceInfo(base::GenerateGUID(),
41 devices.push_back(new DeviceInfo(base::GenerateGUID(),
61 devices.push_back(new DeviceInfo(base::GenerateGUID(),
H A Dsigned_in_devices_api_unittest.cc25 using sync_driver::DeviceInfo;
35 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
38 return scoped_ptr<DeviceInfo>();
41 static DeviceInfo* CloneDeviceInfo(const DeviceInfo* device_info) {
42 return new DeviceInfo(device_info->guid(),
50 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const OVERRIDE {
51 ScopedVector<DeviceInfo> list;
53 for (std::vector<const DeviceInfo*>::const_iterator iter = devices_.begin();
66 void Add(const DeviceInfo* devic
[all...]
H A Did_mapping_helper.cc19 using sync_driver::DeviceInfo;
71 std::vector<DeviceInfo*>* device_info,
74 DeviceInfo* device = (*device_info)[i];
87 scoped_ptr<DeviceInfo> GetDeviceInfoForClientId(
93 ScopedVector<DeviceInfo> devices = GetAllSignedInDevices(extension_id,
95 for (ScopedVector<DeviceInfo>::iterator it = devices.begin();
99 scoped_ptr<DeviceInfo> device(*it);
104 return scoped_ptr<DeviceInfo>();
H A Dsigned_in_devices_manager.cc26 using sync_driver::DeviceInfo;
30 void FillDeviceInfo(const DeviceInfo& device_info,
31 api::signed_in_devices::DeviceInfo* api_device_info) {
62 ScopedVector<DeviceInfo> devices = GetAllSignedInDevices(extension_id_,
65 std::vector<linked_ptr<api::signed_in_devices::DeviceInfo> > args;
67 for (ScopedVector<DeviceInfo>::const_iterator it = devices.begin();
70 linked_ptr<api::signed_in_devices::DeviceInfo> api_device =
71 make_linked_ptr(new api::signed_in_devices::DeviceInfo);
/external/chromium_org/third_party/webrtc/modules/video_capture/include/
H A Dvideo_capture_factory.h12 // and DeviceInfo.
36 static VideoCaptureModule::DeviceInfo* CreateDeviceInfo(
/external/chromium_org/chrome/browser/sync/glue/
H A Dlocal_device_info_provider_impl.h25 virtual const sync_driver::DeviceInfo* GetLocalDeviceInfo() const OVERRIDE;
45 scoped_ptr<sync_driver::DeviceInfo> local_device_info_;
H A Dlocal_device_info_provider_mock.h28 virtual const sync_driver::DeviceInfo* GetLocalDeviceInfo() const OVERRIDE;
41 scoped_ptr<sync_driver::DeviceInfo> local_device_info_;
H A Dlocal_device_info_provider_mock.cc21 new sync_driver::DeviceInfo(
32 const sync_driver::DeviceInfo*
H A Dlocal_device_info_provider_unittest.cc13 using sync_driver::DeviceInfo;
76 const DeviceInfo* local_device_info = provider_->GetLocalDeviceInfo();
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtcvcmfactory.h46 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) {
49 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) {
H A Dwebrtcvideocapturer.h50 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) = 0;
52 webrtc::VideoCaptureModule::DeviceInfo* info) = 0;
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Dvideo_capture_factory.cc28 VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo(
/external/chromium_org/third_party/webrtc/modules/video_capture/windows/
H A Dvideo_capture_factory_windows.cc19 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(
/external/qemu/include/hw/
H A Dqdev-core.h72 typedef struct DeviceInfo DeviceInfo; typedef in typeref:struct:DeviceInfo
74 typedef void (*qdev_initfn)(DeviceState *dev, DeviceInfo *info);
78 struct DeviceInfo { struct
88 void qdev_register(DeviceInfo *info);
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_manager.h139 struct DeviceInfo { struct in class:content::VideoCaptureManager
140 DeviceInfo();
141 DeviceInfo(const media::VideoCaptureDevice::Name& name,
143 ~DeviceInfo();
148 typedef std::vector<DeviceInfo> DeviceInfos;
201 DeviceInfo* FindDeviceInfoById(const std::string& id,
/external/chromium_org/device/serial/
H A Dserial_device_enumerator_win.cc34 serial::DeviceInfoPtr info(serial::DeviceInfo::New());
/external/chromium_org/third_party/webrtc/modules/video_capture/external/
H A Ddevice_info_external.cc46 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(

Completed in 477 milliseconds

1234