1. 8f85a6a Patch for Solaris support, mostly ifdefs and header files, plus adds libevent configuration. by chromium@hybridsource.org · 13 years ago
  2. b107425 Fix to bug 75303 by abeera@google.com · 13 years ago
  3. 2158a0e Use vector_as_array() in ipc/ipc_channel_posix.cc by tzik@chromium.org · 13 years ago
  4. 8fa070a Coverity: Initialize member variables. by jhawkins@chromium.org · 13 years ago
  5. 3bab103 Hooking MHTML generation to the browser. by jcivelli@chromium.org · 13 years ago
  6. 9dfef83 Move UtilityProcessHost to content and move the message sending/dispatching to the clients. This allows the content layer to use the class. by jam@chromium.org · 13 years ago
  7. 3b365fa Disable IPCSyncChannelTest.BadMessage on windows. It crashes occasionally. by kkania@chromium.org · 13 years ago
  8. d4a0129 More POSIX support for Chromium, consisting mostly of broadening ifdefs. This by tony@chromium.org · 13 years ago
  9. 78b7593 Virtual destructors should have virtual keyword. by hans@chromium.org · 13 years ago
  10. 0b3e4e4 IPC: Increase MAX_DESCRIPTORS_PER_MESSAGE by mseaborn@chromium.org · 13 years ago
  11. 5948bf4 Removing 'using namespace' style violations in src/ipc/ by kushi.p@gmail.com · 13 years ago
  12. 0d7e019 Enhance the comment about IPC_USES_READWRITE. I was confused and thought that by brettw@chromium.org · 13 years ago
  13. 8fcfe96 iwyu: Include stringprintf.h where appropriate, part 1. by jhawkins@chromium.org · 13 years ago
  14. 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
  15. 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
  16. 039c411 [Mac] Implement the system dictionary popup by implementing NSTextInput methods. by rsesek@chromium.org · 13 years ago
  17. 90594e3 Improving logging in /app, /base, /crypto and /ipc. Updating plain DCHECK() usages for DCHECK_EQ/LE/GE() equivalents. by kushi.p@gmail.com · 13 years ago
  18. 2f6765e Remove unused member from POSIX implementation of ChannelImpl. by cbentzel@chromium.org · 13 years ago
  19. 0cdaa22 Make icon_messages use the IPC macros for defining the structs and the serialization code, and move the icon messages there. Also get rid of friend class in RenderView that's not needed anymore. by jam@chromium.org · 13 years ago
  20. 9eb2aa5 Replacing outdated DCHECK(a == b) with DCHECK_EQ(a, b). by david.mike.futcher@gmail.com · 13 years ago
  21. b57fa13 Add additional comments to the sync channel. by brettw@chromium.org · 13 years ago
  22. 0aff5eb Add IPC plumbing code for Quota API by kinuko@chromium.org · 13 years ago
  23. 596337b Add IPC messages and renderer process side API for video capture. by wjia@google.com · 13 years ago
  24. 0cbefaa Add sync context dispatch restriction. by piman@google.com · 13 years ago
  25. 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
  26. 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
  27. f91f8ae Limit access to named IPC channels with SO_PEERCRED, not file permissions. by wez@chromium.org · 13 years ago
  28. e90dc16 GTTF: Make automation provider recognize more IPC error conditions by phajdan.jr@chromium.org · 13 years ago
  29. 5a9b4a9 Initialize struct member in LogData. by finnur@chromium.org · 13 years ago
  30. caafbba Move extension messages to their own file and add a RenderViewObserver to start moving the extension code out of RenderView. by jam@chromium.org · 13 years ago
  31. 5c52868 Move some files from base to base/memory. by levin@chromium.org · 13 years ago
  32. 1cd3b7d Move spellcheck messages into their own file, and dispatch them all in SpellCheckMessageFilter. The next step would be to make WebView have a setter for a WebSpellCheckClient that SpellCheckProvider implements so that spelling can be taken out of RenderView completely. by jam@chromium.org · 13 years ago
  33. 45585ac Move printing messages to their own file. by jam@chromium.org · 13 years ago
  34. a37db42 Move the rest of the content browser->renderer messages to content. Also move drag related messages to their own file. by jam@chromium.org · 13 years ago
  35. 9b2cd5c thread.h is not needed by ipc_channel_proxy.cc. by amarinichev@chromium.org · 13 years ago
  36. 18b9db7 Create a new message file for view related messages. I just moved a few messages initially. by jam@chromium.org · 13 years ago
  37. 41e73a0 Move audio messages to their own file. by jam@chromium.org · 13 years ago
  38. 439aef6 autofill: Rename all the entries remaining with AutoFill to Autofill. by tfarina@chromium.org · 13 years ago
  39. 1cdb972 Move geolocation, desktop notification, and device orientation into their own message files.Also fix a regression from my earlier change to create a plugin through the embedder API. The fix is to not to create a plugin if the embedder returns NULL, and just have the default implementation create the plugin on its own.TBR=avi by jam@chromium.org · 13 years ago
  40. 92316aa Creates the ipclist utility that chrome security team has wanted to dump by tsepez@chromium.org · 13 years ago
  41. cbc95ec Simplify ResolveProxyMsgHelper. Make it not special case renderer/plugin, and derive from BrowserMessageFilter for easier filtering and replying. by jam@chromium.org · 13 years ago
  42. 38841be Move AppCache common code to content and split off AppCache messages into their own file. Also move WebMessagePortChannel and WebDatabaseObserverImpl to content. by jam@chromium.org · 13 years ago
  43. 876ecb9 Move the blob related code to content, and also move the blob messages to their own file. by jam@chromium.org · 13 years ago
  44. 7272e46 Change common_message_generator code block. by tsepez@chromium.org · 13 years ago
  45. 09e220e Move the clipboard messages to their own message filter. by dcheng@chromium.org · 13 years ago
  46. 44f2e6c Fixed a bug in the serialization of history::URLRow. by danno@chromium.org · 13 years ago
  47. f3ee6c4 Move the common child process messages into their own file. by jam@chromium.org · 13 years ago
  48. 69ec47c Put file_system messages in their own file and move them to content, in preparation of moving child_thread. by jam@chromium.org · 13 years ago
  49. 4ae3f56 Move resource related IPCs to their own file in content. I added a IPC_STRUCT_TRAITS_PARENT macro to allow the automatic serializing macros to add a parent struct. by jam@chromium.org · 13 years ago
  50. 6f4dc09 Move socket stream messages to content, in preparation for moving its dispatcher. In this change I also converted p2p_messages to use the new automated way of serializing structs. by jam@chromium.org · 13 years ago
  51. 2812db6 Add some bullet proofing to ipc_channel_posix. by dmaclach@chromium.org · 13 years ago
  52. 623a523 P2P Sockets host implementation. by sergeyu@chromium.org · 13 years ago
  53. aed4b38 Pure pedantry: Replace all ".size() == 0" with ".empty()". by erg@google.com · 13 years ago
  54. d65bab5 Attempt to reduce the amount of cut n paste needed to maintain these. by tsepez@chromium.org · 13 years ago
  55. 0d5ac66 ipc: don't send server hello message if we closed the channel. by agl@chromium.org · 13 years ago
  56. 90e5e25 Expand comment for named IPC chmod(). It was previously unclear that it is just a precaution and not intended to be a complete security policy for the named IPC channel. by dtu@chromium.org · 13 years ago
  57. 0c55c56 Get service process running standalone on the mac by hooking it into launchd. by dmaclach@chromium.org · 13 years ago
  58. dd96ed8 Intergration of the client-side phishing detection. by noelutz@google.com · 13 years ago
  59. 1ac4613 Make the implementation .cc files go away, instead have the authors give us a header only. by tsepez@chromium.org · 13 years ago
  60. 8b56335 Wigtspace change to trigger a build. by thestig@chromium.org · 13 years ago
  61. ccb3fef Rent syncemove all uses of the global Dispatcher Get function. by brettw@chromium.org · 13 years ago
  62. f146c29 Clean up channel modes by dmaclach@chromium.org · 13 years ago
  63. 424ed87 Get service processes working on Mac and Linux. by dmaclach@chromium.org · 13 years ago
  64. 13413eb Rename Real* to Double* in values.* and dependent files by arv@chromium.org · 13 years ago
  65. 44ae58f Add support for attaching filters to an IPC TestSink. by bryner@chromium.org · 13 years ago
  66. 84db36d Change size() function to return a size_t so that result size is not inadvertently truncated. by mrossetti@chromium.org · 14 years ago
  67. 52b19fe Move AutoFill messages into a separate file. by jam@chromium.org · 14 years ago
  68. 2873305 Move non-file-system Pepper IPC messages to chrome/common/pepper_messages.*. by viettrungluu@chromium.org · 14 years ago
  69. abe477a Remove obsolete base/lock.h and fix up callers to use the new header file and by brettw@chromium.org · 14 years ago
  70. c0f8558 Move the TestSink for doing IPC tests from chrome/common into IPC and create a new IPC test_support project that references it. by brettw@google.com · 14 years ago
  71. b987255 Adjust unix domain IPC permissions. by dtu@chromium.org · 14 years ago
  72. 5943dc0 If user had consented for metrics reporting, send speech input request origin to the server. by satish@chromium.org · 14 years ago
  73. a8e3c09 Disable crashy IPCSyncChannelTest.SendWithTimeoutMixedOKAndTimeout by phajdan.jr@chromium.org · 14 years ago
  74. e36caf9 Linux: fix a bunch of NULL vs. 0 issues spotted by gcc 4.5. by craig.schlenter@chromium.org · 14 years ago
  75. 5238c7d Move CancellationFlag and WaitableEvent to the synchronization subdirectory. by brettw@chromium.org · 14 years ago
  76. 28078b6 Move base/debug_on_start to base/debugger and rename it to be _win since it by brettw@chromium.org · 14 years ago
  77. 7c5cc67 Remove base/platform_thread.h stub and fix up all callers to use the new location and namespace. by brettw@google.com · 14 years ago
  78. 5b5f5e0 Move base/thread.h to base/threading, fix up callers to use the new location. by brettw@chromium.org · 14 years ago
  79. 6396558 Move thread local stuff from base to base/threading and consistently use the by brettw@chromium.org · 14 years ago
  80. 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
  81. 7398a1a Clean up Automation and Chrome Frame IPC code.-only use routed messages when needed-use routing IDs to avoid manually unpacking messages-remove data structures from IPC namespace (that should only be used for IPC code, and param traits)Note that I temporarily commented out part of a test in external_tab_test.cc because I couldn't figure out how to get the updated gmock macros to compile. by jam@chromium.org · 14 years ago
  82. 82f52f8 Create a message filter for message port and worker messages. This allows a nice cleanup of getting rid of the notifications when RenderMessageFilter and WorkerProcessHost go away. SafeBrowsingResourceHandler doesn't need it anymore as well, since it now overrides OnRequestClosed() which does the same thing. by jam@chromium.org · 14 years ago
  83. c1d3d42 Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  84. f22df39 Revert 69694 - Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  85. 6a9b0c7 Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  86. 8194e85 Revert 69690 - Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  87. 2ef7617 Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  88. 6b1daf8 Revert 69660 - Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  89. b528cbe Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  90. d71e3d6 Revert 69264 - Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  91. f3d729a Revert 69341 - Fix up problem with uninitialized member variable. by dmaclach@chromium.org · 14 years ago
  92. db10f28 Fix up problem with uninitialized member variable. by dmaclach@chromium.org · 14 years ago
  93. 3475648 Make PepperFileMessageFilter be a BrowserMessageFilter. by jam@chromium.org · 14 years ago
  94. 4c2957a Add support for sockets that can listen and accept a connection. by dmaclach@chromium.org · 14 years ago
  95. b1580ca Make IndexedDBDispatcherHost be a message filter and move its messages into a separate file. by jam@chromium.org · 14 years ago
  96. 3accfb8 Make DOMStorageDispatcherHost be a message filter (and rename it accordingly). It now derives from BrowserMessageFilter and hence gets message dispatching to different threads for free. by jam@chromium.org · 14 years ago
  97. fa17a98 Make DatabaseDispatcherHost be a message filter so that ResourceMessageFilter doesn't have to know about it. by jam@chromium.org · 14 years ago
  98. b087641 Switch a bunch of remaining filters to derive from BrowserMessageFilters so that ResourceMessageFilter doesn't have to know about them and vice versa. A bunch of small cleanup in the process. I've added new message files for classes that want their messages dispatched on threads other than the IO. by jam@chromium.org · 14 years ago
  99. aa87060 Rename all methods accessing Singleton<T> as GetInstance(). by satish@chromium.org · 14 years ago
  100. 23f1df5 Revert "Add named testing interface." by phajdan.jr@chromium.org · 14 years ago