Yygorshenin@chromium.orgFixed UDP unittests for MacOS X 10.7
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Remove the rest of #pragma once in one big CL. For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Fix comment nits. This is a follow-up to https://chromiumcodereview.appspot.com/10739002/. R=ygorshenin@chromium.org BUG=136797 TEST=no compilation errors Review URL: https://chromiumcodereview.appspot.com/10783029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150362 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Remove the rest of #pragma once in one big CL. For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Migrate net/socket/socket.h, net/socket/stream_socket.h to base::Bind(). This changes Socket::Read(), Socket::Write, and StreamSocket::Connect() to use CompletionCallback and fixes all users. BUG=none TEST=existing. Review URL: http://codereview.chromium.org/8824006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113825 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Remove the rest of #pragma once in one big CL. For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
NetLogEventParameter to Callback refactoring 4. Get rid of all uses of NetLogEventParameters in net/udp and net/dns. R=eroman@chromium.org BUG=126243 Review URL: https://chromiumcodereview.appspot.com/10546133 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142076 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Remove the rest of #pragma once in one big CL. For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Added broadcasting feature to UDP server sockets. BUG=136797 TEST=net_unittests:UDPSocketTest.Broadcast Review URL: https://chromiumcodereview.appspot.com/10739002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146790 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Added broadcasting feature to UDP server sockets. BUG=136797 TEST=net_unittests:UDPSocketTest.Broadcast Review URL: https://chromiumcodereview.appspot.com/10739002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146790 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Remove the rest of #pragma once in one big CL. For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
SO_REUSEPORT socket option is set up when Broadcast feature is requested. Previously it's not caused any bugs because when broadcasting feature is needed, address reuse feature is set up too. BUG=none TEST=net_unittests:UDPSocketTest.* Review URL: https://chromiumcodereview.appspot.com/10917235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157373 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Clean-up inline members of nested classes (net/) Due to a bug, the Clang-plugin style checker failed to warn about inline constructors, destructors, non-empty virtual methods, etc. for nested classes. The plugin has been fixed, and this patch is part of a clean-up of all the code that now causes the plugin to issue errors. BUG=139346 Review URL: https://chromiumcodereview.appspot.com/10854063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150917 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Fixed UDP unittests for MacOS X 10.7 Fixed Connect and VerifyConnectBindsAddr unittests. As broadcast option is blocked for regular users on OSX, added check for UID to Broadcast unittest. Also, disabled browser_test:UDPSocketPrivate_Broadcast as it's compiled via NaCl toolchain, so we can't recognize current OS being inside that test. BUG=145487 TEST=net_unittests:UDPSocketTest.* Review URL: https://chromiumcodereview.appspot.com/10916052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157399 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
[net/udp] Create UDPSocketWin::Core which persists until all network operations complete. The Core pattern is copied from TCPClientSocketWin. BUG=121085 TEST=net_unittests --gtest_filter=UDP* Review URL: https://chromiumcodereview.appspot.com/10918158 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156328 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
[net/udp] Create UDPSocketWin::Core which persists until all network operations complete. The Core pattern is copied from TCPClientSocketWin. BUG=121085 TEST=net_unittests --gtest_filter=UDP* Review URL: https://chromiumcodereview.appspot.com/10918158 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156328 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 |