1. 15996aa Introduce ChannelMojo by morrita@chromium.org · 10 years ago
  2. 844f1c3 IPC::Channel: Reduce POSIX specific API surface by morrita@chromium.org · 10 years ago
  3. fde2b6b Make IPC::Channel polymorphic by morrita@chromium.org · 10 years ago
  4. 15b4860 Add IPC::ChannelProxy::Create() and IPC::SyncChannel::Create() by morrita@chromium.org · 10 years ago
  5. 773476a Revert 274310 "Introduce IPC::ChannelProxy::Create*() and IPC::S..." by lambroslambrou@chromium.org · 10 years ago
  6. 822cdcb Introduce IPC::ChannelProxy::Create*() and IPC::SynChannel::Create*() by morrita@chromium.org · 10 years ago
  7. 2ced004 Introduce IPC::Channel::Create*() to ensure it being heap-allocated. by morrita@chromium.org · 10 years ago
  8. f74386d Revert 273575 "Introduce IPC::Channel::Create*() to ensure it be..." by mattm@chromium.org · 10 years ago
  9. ae1bebb Introduce IPC::Channel::Create*() to ensure it being heap-allocated. by morrita@chromium.org · 10 years ago
  10. 822f1fb Ensure that any IPC sent from a child process that couldn't be deserialized causes that process to be killed. by jam@chromium.org · 10 years ago
  11. 24f2bea IPC: Restrict 'toplevel' to truly toplevel events. by epenner@chromium.org · 10 years ago
  12. c0c370e Move IPC::MessageFilter and router to a separate file by dmichael@chromium.org · 10 years ago
  13. 1446d8a DCHECK that listener thread != IO thread by dmichael@chromium.org · 10 years ago
  14. 31a1681 Eliminate a potential race in IPC::ChannelProxy by dmichael@chromium.org · 10 years ago
  15. 94b2f5b Revert of Eliminate a potential race in IPC::ChannelProxy (https://codereview.chromium.org/183553004/) by johnme@chromium.org · 10 years ago
  16. 8141957 Eliminate a potential race in IPC::ChannelProxy by dmichael@chromium.org · 10 years ago
  17. 03f232f Allow MessageFilters to restrict listening to specific message classes by jdduke@chromium.org · 10 years ago
  18. fa8e795 Revert "Allow MessageFilters to restrict listening to specific message classes" by jdduke@chromium.org · 10 years ago
  19. b9676fe Allow MessageFilters to restrict listening to specific message classes by jdduke@chromium.org · 10 years ago
  20. 4529a9d Make flow event traces disabled-by-default by fmeawad@chromium.org · 11 years ago
  21. f2ed59e Remove an outdated comment. by eroman@chromium.org · 11 years ago
  22. bb9f510 Remove ipc fuzzing code. by thestig@chromium.org · 11 years ago
  23. 7e21f68 Make BrowserMessageFilter not derive from IPC::ChannelProxy::MessageFilter. This allows us to hide the OnMessageReceived which shouldn't be overridden from child classes, and also avoid the pattern of requiring an overridden method to have to call to the base class. by jam@chromium.org · 11 years ago
  24. ca4f6e2 Make utility process run in-process when running in single-process mode. by jam@chromium.org · 11 years ago
  25. 23b6623 Update ipc/ to use scoped_refptr<T>::get() rather than implicit "operator T*" by rsleevi@chromium.org · 11 years ago
  26. f14bfab Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. by jeremya@chromium.org · 11 years ago
  27. 4b4a08f Revert 187554 "Implement IPC::ChannelFactory, a class that accep..." by falken@chromium.org · 11 years ago
  28. bbdd7af Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. by jeremya@chromium.org · 11 years ago
  29. adeb31c Revert 187233 by dmikurube@chromium.org · 11 years ago
  30. 5363a0b Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. by jeremya@chromium.org · 11 years ago
  31. 53a8ef8 Revert 186912 by jeremya@chromium.org · 11 years ago
  32. a1e489b Implement IPC::ChannelFactory, a class that accept()s on a UNIX socket. by jeremya@chromium.org · 11 years ago
  33. 0192ff0 Marked IPC::ChannelProxy as non thread-safe. Added DCHECKs to verify that public methods (with Send() being the only exception) are called on the thread that created the object. by alexeypa@chromium.org · 12 years ago
  34. 7cc8033 Trace PostTasks from post to run. by jbates@chromium.org · 12 years ago
  35. 4b8271c Add async trace events to trace progress of IPC messages by jbates@chromium.org · 12 years ago
  36. e62750c Clean-up inline members of nested classes (ipc/) by hans@chromium.org · 12 years ago
  37. 5b6d49c Cleanup IPC::ChannelProxy to use SingleThreadTaskRunner by sergeyu@chromium.org · 12 years ago
  38. f947ed0 Separate out IPC::Message::Sender and Channel::Listener into a separate class. by brettw@chromium.org · 12 years ago
  39. b798bb4 PPAPI/NaCl: Re-land speculative implementation for ipc_channel_nacl.cc by dmichael@chromium.org · 12 years ago
  40. 5ba842b Revert 139635 - PPAPI/NaCl: Speculative implementation for ipc_channel_nacl.cc by rch@chromium.org · 12 years ago
  41. e8ba0fd PPAPI/NaCl: Speculative implementation for ipc_channel_nacl.cc by dmichael@chromium.org · 12 years ago
  42. 24b15ad Log message class/line in IPC::ChannelProxy::Context::OnDispatchMessage by piman@chromium.org · 12 years ago
  43. 997c1d4 RefCounted types should not have public destructors, ipc/ edition by rsleevi@chromium.org · 12 years ago
  44. aa4d16a Add ipc_channel_nacl to the untrusted build and fix all compile/link errors. by bbudge@chromium.org · 12 years ago
  45. a5cd076 Make IPC channels track their peer process ID by jschuh@chromium.org · 12 years ago
  46. 8255d6c Simple trace logging of received IPC messages by rbyers@chromium.org · 12 years ago
  47. 4502514 Revert 121889 - Add simple trace logging of received IPC messages by rbyers@chromium.org · 12 years ago
  48. 0db19f6 Add simple trace logging of received IPC messages by rbyers@chromium.org · 12 years ago
  49. e34d0ad base::Bind: Convert IPC::SendTask. by jhawkins@chromium.org · 13 years ago
  50. 9ccb469 Allow proxy channels to be created without initializing the underlying channel. by kkania@chromium.org · 13 years ago
  51. 9827bd1 base:Bind: Convert ipc/. by jhawkins@chromium.org · 13 years ago
  52. 8e2e300 Delete Tracked, and move Location to its own file. by ajwong@chromium.org · 13 years ago
  53. af9455b Wait properly for renderer crashes by phajdan.jr@chromium.org · 13 years ago
  54. ad12d3d This patch caused Chrome to be unable to load any web pages on Chrome OS. by satorux@chromium.org · 13 years ago
  55. a2e284f Fix IPC OnChannelConnected() to send correct PID on Linux/CrOS by jamescook@chromium.org · 13 years ago
  56. aa53871 ipc: rename a variable to make code clearer by evan@chromium.org · 13 years ago
  57. ba04861 Add MessageLoopProxy::current by nduca@chromium.org · 13 years ago
  58. e68ddef IPC outgoing message filters interpose yourself in a message stream. Minimally invasive baseline for building IPC tests to abuse browser along the lines of a compromised renderer. by tsepez@chromium.org · 13 years ago
  59. 06d1844 Switch IPC::ChannelProxy to use MessageLoopProxy instead of MessageLoop. This allows us to remove usage of the IOThread object, and generally makes IPC::ChannelProxy more robust for future uses. by jam@chromium.org · 13 years ago
  60. 7cce091 Revert 80604 - Revert 80602 - Limit access to named IPC channels with SO_PEERCRED, not file permissions.BUG=TEST=Run Chrome & configure a service, to get the service process to start. Close Chrome and run a copy as a different user, but from the same user-data-dir. New Chrome should not be able to communicate with the service process.Review URL: http://codereview.chromium.org/6631002TBR=wez@chromium.orgReview URL: http://codereview.chromium.org/6806006 by wez@chromium.org · 13 years ago
  61. a76a26f Revert 80602 - Limit access to named IPC channels with SO_PEERCRED, not file permissions.BUG=TEST=Run Chrome & configure a service, to get the service process to start. Close Chrome and run a copy as a different user, but from the same user-data-dir. New Chrome should not be able to communicate with the service process.Review URL: http://codereview.chromium.org/6631002 by wez@chromium.org · 13 years ago
  62. f91f8ae Limit access to named IPC channels with SO_PEERCRED, not file permissions. by wez@chromium.org · 13 years ago
  63. 5c52868 Move some files from base to base/memory. by levin@chromium.org · 13 years ago
  64. 9b2cd5c thread.h is not needed by ipc_channel_proxy.cc. by amarinichev@chromium.org · 13 years ago
  65. f146c29 Clean up channel modes by dmaclach@chromium.org · 14 years ago
  66. 424ed87 Get service processes working on Mac and Linux. by dmaclach@chromium.org · 14 years ago
  67. abe477a Remove obsolete base/lock.h and fix up callers to use the new header file and by brettw@chromium.org · 14 years ago
  68. 5b5f5e0 Move base/thread.h to base/threading, fix up callers to use the new location. by brettw@chromium.org · 14 years ago
  69. 8a2c784 Make IPC::Channel::Listener:OnMessageReceived have a return value indicating whether a message was processed or not. by jam@chromium.org · 14 years ago
  70. aa87060 Rename all methods accessing Singleton<T> as GetInstance(). by satish@chromium.org · 14 years ago
  71. 058c4a7 Convert over to channel handles by dmaclach@chromium.org · 14 years ago
  72. e57135c Add a base class for objects that want to filter messages on the IO thread. I'll switch the filters to it in future separate changes. by jam@chromium.org · 14 years ago
  73. 07af1a6 NaCl IPC bringup. by abarth@chromium.org · 14 years ago
  74. d0cc67a Convert implicit scoped_refptr constructor calls to explicit ones, part 2 by thakis@chromium.org · 14 years ago
  75. 78bc975 Revert "Revert "Const-ify RefCountedThreadSafe::AddRef and Release."" by mpcomplete@chromium.org · 14 years ago
  76. ec40751 Revert "Const-ify RefCountedThreadSafe::AddRef and Release." by levin@chromium.org · 14 years ago
  77. 4d61c7e Const-ify RefCountedThreadSafe::AddRef and Release. by mpcomplete@chromium.org · 14 years ago
  78. 3298847 Use make_scoped_refptr() instead of manual AddRef()/Release() in ipc. by willchan@chromium.org · 14 years ago
  79. bdea128 Revert 61899 for breaking cookes on file:// URLs. by willchan@chromium.org · 14 years ago
  80. 72fa50e Fix instances of passing raw pointers to RefCounted objects in tasks. by willchan@chromium.org · 14 years ago
  81. 20b66e3 FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. by erg@google.com · 14 years ago
  82. 2ec53b4 FBTF: Move virtual methods to implementation files. by erg@google.com · 14 years ago
  83. 999f297 Fix a chrome browser crash observed in chrome frame reliability test runs. The crash occurs by ananta@chromium.org · 14 years ago
  84. a752852 Attempt four at landing the "histogram.h removed from message_loop.h" patch. by erg@chromium.org · 14 years ago
  85. b1f47b2 First patch in making destructors of refcounted objects private. by jam@chromium.org · 15 years ago
  86. 5863a19 Add the ability for objects which derive from RefCountedThreadSafe to specify a destructor trait. This allows browser objects to specify which thread they're terminated on. The benefit is we avoid the need to do manual ref counting when an object posts tasks to itself on different threads, if an object must be destructed on a specific thread. by jam@chromium.org · 15 years ago
  87. 1c86b55 The messages attached to the task created by an IPC ChannelProxy are leaked when the message loop is destroyed (the MessageLoop deletes its pending tasks on destruction, but not the messages). by jcampan@chromium.org · 15 years ago
  88. c12dde3 Unrevert 21355 because the revert might be causing the worker tests failures. by nsylvain@chromium.org · 15 years ago
  89. 030b1b5 Revert 21355 because it might be causing all the new by nsylvain@chromium.org · 15 years ago
  90. e949174 Switch the first thread in a child process to be the main thread, and make theIO thread be the second thread. The change is needed for plugins on mac. by jam@chromium.org · 15 years ago
  91. 1c6dcf2 Split the IPC code into ipc/ by agl@chromium.org · 15 years ago
  92. 9f96682 Revert "Move IPC code to ipc/" by agl@chromium.org · 15 years ago
  93. 2390c8c Move IPC code to ipc/ by agl@chromium.org · 15 years ago