1. adf31eb Replace base::hash_map with std::unordered_map by Takuto Ikuta · 7 years ago
  2. a35f9a4 Rename buildflag_headers for consistency by Scott Violet · 7 years ago
  3. 3044d21 Add a generic component export macro by Ken Rockot · 8 years ago
  4. 041528a Reland "Add enable_ipc_logging build argument" by davidsz · 8 years ago
  5. c102892 Revert of Reland "Add enable_ipc_logging build argument" (patchset #1 id:1 of https://codereview.chromium.org/2777983005/ ) by jwd · 8 years ago
  6. b39d833 Reland "Add enable_ipc_logging build argument (patchset #2 id:20001 of https://codereview.chromium.org/2770653002/ )" by davidsz · 8 years ago
  7. 844b401 Revert of Add enable_ipc_logging build argument (patchset #2 id:20001 of https://codereview.chromium.org/2770653002/ ) by rockot · 8 years ago
  8. 76890ec Add enable_ipc_logging build argument by davidsz · 8 years ago
  9. a1b3b4d Remove IPC channel IDs. by sammc · 9 years ago
  10. bcb9b32 Remove calls to MessageLoop::current() in ipc. by fdoray · 9 years ago
  11. 03de39b2 Convert scoped_ptr to std::unique_ptr in //ipc. by danakj · 9 years ago
  12. 36aa8be Move Singleton and related structs to namespace base by olli.raula · 10 years ago
  13. 10a5c06 ipc: Convert int types from basictypes.h to the ones from stdint.h by tfarina · 10 years ago
  14. 2a9ec0e Use a direct include of the message_loop header in dbus/, device/, extensions/, google_apis/, gpu/, ipc/, jingle/. by [email protected] · 12 years ago
  15. 14c1c23 Rename base/hash_tables to base/containers/hash_tables. by [email protected] · 12 years ago
  16. fd0a773a ipc: Use base::MessageLoop. by [email protected] · 12 years ago
  17. 510344fc Get rid of ipc_sender.h include in ipc_message.h. by [email protected] · 13 years ago
  18. 01c86ec Remove the rest of #pragma once in one big CL. by [email protected] · 13 years ago
  19. 57319ce Separate out IPC::Message::Sender and Channel::Listener into a separate class. by [email protected] · 13 years ago
  20. ea7744a More message names and some timing output for the IPC logging. by [email protected] · 14 years ago
  21. 7c85437 Create ipc.dll. Review URL: http://codereview.chromium.org/7633042 by [email protected] · 14 years ago
  22. 4fe40b8 ipc: remove an unused function prototype by [email protected] · 14 years ago
  23. 3b63f8f4 Move some files from base to base/memory. by [email protected] · 14 years ago
  24. 8e8bb6d Rename all methods accessing Singleton<T> as GetInstance(). by [email protected] · 15 years ago
  25. 21fa3a1 ipc: Simplify the magic required to create IPC message headers.This gets rid of having to include the files in a magic place because of xcode dependency issues, and just makes it simpler to create new IPC message classes. It also gets rid of including the X_messages_internal.h file multiple times, which simplifies things and should make the build a little faster. by [email protected] · 15 years ago
  26. 252cad6 Remove all wstrings from the IPC logging subsystem. by [email protected] · 15 years ago
  27. 4a39897 FBTF: Remove unneeded headers from base/ (part 2) by [email protected] · 15 years ago
  28. 32b76ef `#pragma once` for app, base, chrome, gfx, ipc, net, skia, views by [email protected] · 15 years ago
  29. 20cb5f48 Give classes with virtual methods virtual protected destructors instead of implicit non-virtual public destructors. by [email protected] · 16 years ago
  30. 168ae92 Added new IPC message class for CommandBuffer. by [email protected] · 16 years ago
  31. d55aaa13 Implement about:ipc dialog for Mac. by [email protected] · 16 years ago
  32. 5a3b914 Revert "Fix a ton of compiler warnings." by [email protected] · 16 years ago
  33. be952c3c Fix a ton of compiler warnings. by [email protected] · 16 years ago
  34. 946d1b2 Split the IPC code into ipc/ by [email protected] · 16 years ago[Renamed (94%) from chrome/common/ipc_logging.h]
  35. 9a3a293b ipc: use strings, not wstrings for channel ids. by [email protected] · 16 years ago
  36. 7bf73095 Headers cleanup in chrome/common by [email protected] · 16 years ago
  37. 82e5ee8 Revert "Move IPC code to ipc/" by [email protected] · 16 years ago[Renamed (88%) from ipc/ipc_logging.h]
  38. 8cf3f1da Move IPC code to ipc/ by [email protected] · 16 years ago[Renamed (88%) from chrome/common/ipc_logging.h]
  39. b6f87899 NO CODE CHANGE by [email protected] · 16 years ago
  40. 100897a Make IPC::Logging register to watch for message loop destruction. by [email protected] · 16 years ago
  41. e707d5e6 POSIX: basic IPC logging by [email protected] · 17 years ago
  42. 3335d87 Redo my IPC change, undoing the linker dependency. by [email protected] · 17 years ago
  43. d5dfa5a revert my ipc change due to compile failure in debug ipc_tests by [email protected] · 17 years ago
  44. 08658a4 Fix ipc logging for non browser processes. I broke this in my last refactoring, since the logger functions only got registered in the browser. This fix registers them using a global object for each message type (that's only compiled when debugging is enabled). One less thing to take care of when creating new message types. by [email protected] · 17 years ago
  45. f91cb99 Commit just the changes to make creating new IPC channel types easier. by [email protected] · 17 years ago
  46. 7d5c3ac Revert my change to get the tree green. Not sure why the tests became flaky. I'll try to check them in again but in smaller chunks tomorrow. by [email protected] · 17 years ago
  47. 39b7b067 Make it easier/less work/less error-prone to create new IPC channel types (i.e. renderer/plugin).Instead of having each message file include the internal one several times with different ifdefs, move that logic to ipc_message_macros.h. Also make the message class starting IDs come from an enum to ensure we don't use a value twice. I simplified the logging code a bit so we don't need X_messages.cc files.Clean up places that we were doing manual packing/unpacking. Most of this was in the automation code. I added a few new template functions to make it convenient to read the parameters from a message, and updated the code to use them.I also removed unnecessary includes of render/plugin_messages.h from headers to speed up compiling.I moved the traits of IPC structs beside the struct definition to make it more apparent what's going on, so we avoid people modifying the struct and forgetting to update the traits.Amit: please look at chrome/test/automation/tab_proxy.ccMarc-Antoine: chrome/browser/printing/*Matt: the rest by [email protected] · 17 years ago
  48. 1c4947f WaitableEvent is the replacement for Windows events. Previously in the code, a HANDLE from CreateEvent was used for signaling, both within a process and across processes. by [email protected] · 17 years ago
  49. bf09a50 Use a more compact license header in source files. by license.bot · 17 years ago
  50. cee1dfa reland safe portions of r625 by [email protected] · 17 years ago
  51. 2de7552 rollback r625 because it made things slower by [email protected] · 17 years ago
  52. 2984f1ca Switch IPC classes over to using ObjectWatcher instead of MessageLoop::WatchObject. by [email protected] · 17 years ago
  53. 3178f4e2 Reapply 379 since it wasn't the issue with the build breakage. by [email protected] · 17 years ago
  54. 6d55c2fb Revert change 379 to see if it fixes the build. Please reapply when it's green. by [email protected] · 17 years ago
  55. 83f6146 Reduce the quantity of includes and template specialization in ipc_message_utils.h. by [email protected] · 17 years ago
  56. 09911bf Add chrome to the repository. by initial.commit · 17 years ago