Searched refs:owner_extension_id (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/extensions/browser/api/
H A Dapi_resource.cc9 ApiResource::ApiResource(const std::string& owner_extension_id) argument
10 : owner_extension_id_(owner_extension_id) {
H A Dapi_resource.h22 const std::string& owner_extension_id() const { return owner_extension_id_; } function in class:extensions::ApiResource
32 explicit ApiResource(const std::string& owner_extension_id);
H A Dapi_resource_manager_unittest.cc34 explicit FakeApiResource(const std::string& owner_extension_id) argument
35 : ApiResource(owner_extension_id) {}
H A Dapi_resource_manager.h231 const std::string& extension_id = api_resource->owner_extension_id();
268 if (old_resource && extension_id == old_resource->owner_extension_id()) {
321 if (resource && extension_id == resource->owner_extension_id())
/external/chromium_org/extensions/browser/api/hid/
H A Dhid_connection_resource.cc29 const std::string& owner_extension_id,
31 : ApiResource(owner_extension_id), connection_(connection) {}
28 HidConnectionResource( const std::string& owner_extension_id, scoped_refptr<device::HidConnection> connection) argument
H A Dhid_connection_resource.h34 HidConnectionResource(const std::string& owner_extension_id,
/external/chromium_org/extensions/browser/api/usb/
H A Dusb_device_resource.cc35 UsbDeviceResource::UsbDeviceResource(const std::string& owner_extension_id, argument
37 : ApiResource(owner_extension_id), device_(device) {
H A Dusb_device_resource.h30 UsbDeviceResource(const std::string& owner_extension_id,
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_connection.cc24 const std::string& owner_extension_id,
26 : ApiResource(owner_extension_id),
22 BluetoothLowEnergyConnection( bool persistent, const std::string& owner_extension_id, scoped_ptr<device::BluetoothGattConnection> connection) argument
H A Dbluetooth_low_energy_notify_session.cc24 const std::string& owner_extension_id,
26 : ApiResource(owner_extension_id),
22 BluetoothLowEnergyNotifySession( bool persistent, const std::string& owner_extension_id, scoped_ptr<device::BluetoothGattNotifySession> session) argument
H A Dbluetooth_low_energy_connection.h20 const std::string& owner_extension_id,
H A Dbluetooth_low_energy_notify_session.h22 const std::string& owner_extension_id,
/external/chromium_org/extensions/browser/api/socket/
H A Dtcp_socket.h25 explicit TCPSocket(const std::string& owner_extension_id);
27 const std::string& owner_extension_id,
67 const std::string& owner_extension_id,
71 const std::string& owner_extension_id);
92 const std::string& owner_extension_id);
113 explicit ResumableTCPSocket(const std::string& owner_extension_id);
115 const std::string& owner_extension_id,
154 explicit ResumableTCPServerSocket(const std::string& owner_extension_id);
H A Dtcp_socket.cc45 TCPSocket::TCPSocket(const std::string& owner_extension_id) argument
46 : Socket(owner_extension_id), socket_mode_(UNKNOWN) {}
49 const std::string& owner_extension_id,
51 : Socket(owner_extension_id),
58 const std::string& owner_extension_id)
59 : Socket(owner_extension_id),
66 const std::string& owner_extension_id,
68 return new TCPSocket(tcp_client_socket, owner_extension_id, is_connected);
74 const std::string& owner_extension_id) {
75 return new TCPSocket(tcp_server_socket, owner_extension_id);
48 TCPSocket(net::TCPClientSocket* tcp_client_socket, const std::string& owner_extension_id, bool is_connected) argument
57 TCPSocket(net::TCPServerSocket* tcp_server_socket, const std::string& owner_extension_id) argument
64 CreateSocketForTesting( net::TCPClientSocket* tcp_client_socket, const std::string& owner_extension_id, bool is_connected) argument
72 CreateServerSocketForTesting( net::TCPServerSocket* tcp_server_socket, const std::string& owner_extension_id) argument
337 ResumableTCPSocket(const std::string& owner_extension_id) argument
343 ResumableTCPSocket(net::TCPClientSocket* tcp_client_socket, const std::string& owner_extension_id, bool is_connected) argument
353 ResumableTCPServerSocket( const std::string& owner_extension_id) argument
[all...]
H A Dudp_socket.h18 explicit UDPSocket(const std::string& owner_extension_id);
82 explicit ResumableUDPSocket(const std::string& owner_extension_id);
H A Dsocket.cc31 Socket::Socket(const std::string& owner_extension_id) argument
32 : ApiResource(owner_extension_id), is_connected_(false) {}
H A Dtls_socket.h40 const std::string& owner_extension_id);
H A Dudp_socket.cc29 UDPSocket::UDPSocket(const std::string& owner_extension_id) argument
30 : Socket(owner_extension_id),
289 ResumableUDPSocket::ResumableUDPSocket(const std::string& owner_extension_id) argument
290 : UDPSocket(owner_extension_id),
H A Dtls_socket.cc72 const std::string& owner_extension_id)
73 : ResumableTCPSocket(owner_extension_id), tls_socket_(tls_socket.Pass()) {
71 TLSSocket(scoped_ptr<net::StreamSocket> tls_socket, const std::string& owner_extension_id) argument
/external/chromium_org/extensions/browser/api/bluetooth_socket/
H A Dbluetooth_api_socket.cc32 BluetoothApiSocket::BluetoothApiSocket(const std::string& owner_extension_id) argument
33 : ApiResource(owner_extension_id),
42 const std::string& owner_extension_id,
46 : ApiResource(owner_extension_id),
41 BluetoothApiSocket( const std::string& owner_extension_id, scoped_refptr<device::BluetoothSocket> socket, const std::string& device_address, const device::BluetoothUUID& uuid) argument
H A Dbluetooth_api_socket.h39 explicit BluetoothApiSocket(const std::string& owner_extension_id);
40 BluetoothApiSocket(const std::string& owner_extension_id,
/external/chromium_org/extensions/browser/api/serial/
H A Dserial_apitest.cc72 const std::string& owner_extension_id) const OVERRIDE {
78 new SerialConnection(port, owner_extension_id);
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dlog_private_api.h36 FileResource(const std::string& owner_extension_id,
70 void RegisterTempFile(const std::string& owner_extension_id,
94 void InitializeNetLogger(const std::string& owner_extension_id,
H A Dlog_private_api_chromeos.cc131 FileResource::FileResource(const std::string& owner_extension_id, argument
133 : ApiResource(owner_extension_id), path_(path) {
192 void LogPrivateAPI::RegisterTempFile(const std::string& owner_extension_id, argument
199 owner_extension_id,
204 log_file_resources_.Add(new FileResource(owner_extension_id, file_path));
257 void LogPrivateAPI::InitializeNetLogger(const std::string& owner_extension_id, argument
263 base::FilePath app_log_dir = GetAppLogDirectory().Append(owner_extension_id);
280 RegisterTempFile(owner_extension_id, file_path);
/external/chromium_org/chrome/browser/extensions/
H A Duser_script_loader.h60 const ExtensionId& owner_extension_id,

Completed in 1785 milliseconds

12