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

Side by Side Diff: extensions/browser/api/socket/udp_socket.cc

Issue 183893041: Move sockets APIs out of src/chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename api targets Created 6 years, 9 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 | Annotate | Revision Log
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 #include "chrome/browser/extensions/api/socket/udp_socket.h" 5 #include "extensions/browser/api/socket/udp_socket.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "extensions/browser/api/api_resource.h" 9 #include "extensions/browser/api/api_resource.h"
10 #include "net/base/ip_endpoint.h" 10 #include "net/base/ip_endpoint.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 #include "net/udp/datagram_socket.h" 12 #include "net/udp/datagram_socket.h"
13 #include "net/udp/udp_client_socket.h" 13 #include "net/udp/udp_client_socket.h"
14 14
15 namespace extensions { 15 namespace extensions {
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 287
288 ResumableUDPSocket::ResumableUDPSocket(const std::string& owner_extension_id) 288 ResumableUDPSocket::ResumableUDPSocket(const std::string& owner_extension_id)
289 : UDPSocket(owner_extension_id), 289 : UDPSocket(owner_extension_id),
290 persistent_(false), 290 persistent_(false),
291 buffer_size_(0), 291 buffer_size_(0),
292 paused_(false) {} 292 paused_(false) {}
293 293
294 bool ResumableUDPSocket::IsPersistent() const { return persistent(); } 294 bool ResumableUDPSocket::IsPersistent() const { return persistent(); }
295 295
296 } // namespace extensions 296 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/socket/udp_socket.h ('k') | extensions/browser/api/sockets_tcp/sockets_tcp/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698