HomeSort by relevance Sort by last modified time
    Searched full:owner_extension_id (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/
api_resource.cc 9 ApiResource::ApiResource(const std::string& owner_extension_id)
10 : owner_extension_id_(owner_extension_id) {
api_resource.h 22 const std::string& owner_extension_id() const { function in class:extensions::ApiResource
34 explicit ApiResource(const std::string& owner_extension_id);
api_resource_manager_unittest.cc 33 explicit FakeApiResource(const std::string& owner_extension_id) :
34 ApiResource(owner_extension_id) {}
api_resource_manager.h 190 const std::string& extension_id = api_resource->owner_extension_id();
248 if (resource && extension_id == resource->owner_extension_id())
  /external/chromium_org/chrome/browser/extensions/api/socket/
tcp_socket.cc 42 TCPSocket::TCPSocket(const std::string& owner_extension_id)
43 : Socket(owner_extension_id),
48 const std::string& owner_extension_id,
50 : Socket(owner_extension_id),
57 const std::string& owner_extension_id)
58 : 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);
    [all...]
tcp_socket.h 25 explicit TCPSocket(const std::string& owner_extension_id);
27 const std::string& owner_extension_id,
60 const std::string& owner_extension_id,
64 const std::string& owner_extension_id);
79 const std::string& owner_extension_id);
104 explicit ResumableTCPSocket(const std::string& owner_extension_id);
106 const std::string& owner_extension_id,
147 explicit ResumableTCPServerSocket(const std::string& owner_extension_id);
socket.cc 30 Socket::Socket(const std::string& owner_extension_id)
31 : ApiResource(owner_extension_id), is_connected_(false) {
udp_socket.h 18 explicit UDPSocket(const std::string& owner_extension_id);
84 explicit ResumableUDPSocket(const std::string& owner_extension_id);
udp_socket.cc 28 UDPSocket::UDPSocket(const std::string& owner_extension_id)
29 : Socket(owner_extension_id),
301 ResumableUDPSocket::ResumableUDPSocket(const std::string& owner_extension_id)
302 : UDPSocket(owner_extension_id),
  /external/chromium_org/chrome/browser/extensions/api/usb/
usb_device_resource.cc 33 UsbDeviceResource::UsbDeviceResource(const std::string& owner_extension_id,
35 : ApiResource(owner_extension_id), device_(device) {}
usb_device_resource.h 32 UsbDeviceResource(const std::string& owner_extension_id,
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_apitest.cc 59 const std::string& owner_extension_id)
60 : SerialConnection(port, owner_extension_id),
131 const std::string& owner_extension_id) const OVERRIDE {
133 new FakeEchoSerialConnection(port, owner_extension_id);
serial_connection.cc 37 const std::string& owner_extension_id)
38 : ApiResource(owner_extension_id),
serial_event_dispatcher.cc 79 DCHECK(params.extension_id == connection->owner_extension_id());
serial_connection.h 53 const std::string& owner_extension_id);
  /external/chromium_org/chrome/browser/extensions/api/cast_channel/
cast_channel_api.cc 89 DispatchEventToExtension(socket->owner_extension_id(), event.Pass());
103 DispatchEventToExtension(socket->owner_extension_id(), event.Pass());
cast_socket.h 66 // Creates a new CastSocket to |url|. |owner_extension_id| is the id of the
68 CastSocket(const std::string& owner_extension_id,
cast_socket.cc 68 CastSocket::CastSocket(const std::string& owner_extension_id,
72 ApiResource(owner_extension_id),
  /external/chromium_org/chrome/browser/extensions/api/sockets_tcp/
tcp_socket_event_dispatcher.cc 97 DCHECK(params.extension_id == socket->owner_extension_id())
  /external/chromium_org/chrome/browser/extensions/api/sockets_tcp_server/
tcp_server_socket_event_dispatcher.cc 107 DCHECK(params.extension_id == socket->owner_extension_id())
  /external/chromium_org/chrome/browser/extensions/api/sockets_udp/
udp_socket_event_dispatcher.cc 84 DCHECK(params.extension_id == socket->owner_extension_id())

Completed in 714 milliseconds