1. ccb3d9f Basic implementation of the clipboard on the Mac. by avi@google.com · 16 years ago
  2. 9d0fbde Additional cleanups for PRTimeTest. We already have a microseconds-per-milliseconds constant, use it. Do less per-OS #ifdeffing. by mmentovai@google.com · 16 years ago
  3. 3a1aa64 Fix ToUnsigned for 4-byte wchar_t platforms. by mmentovai@google.com · 16 years ago
  4. cd20e5c Fix command_line unit test now that argv is no longer const. (Doh!) Remove a technically illegal zero-length array. Fix a couple of warnings for good measure as long as I'm in here. by mmentovai@google.com · 16 years ago
  5. 1c0026a Fix build breakage on Windows. by evanm@google.com · 16 years ago
  6. 638e9fb Get rid of the command-line hacks for posix platforms. by evanm@google.com · 16 years ago
  7. 477ad9e SCons build updates: by sgk@google.com · 16 years ago
  8. 52e3847 include and turn on more base unit tests. by pinkerton@google.com · 16 years ago
  9. 326412b bustage fix, include build_config for platform defines. by pinkerton@google.com · 16 years ago
  10. d60f05d Set the svn:eol-style to LF. by tc@google.com · 16 years ago
  11. 60d2d96 Expand an internal-only URL to its destination. by evanm@google.com · 16 years ago
  12. f86f20c Stub out defines on non-windows platforms. by pinkerton@google.com · 16 years ago
  13. 54907a8 Fix unit tests for posix, fix up mac implementation to work correctly. Add prtime unit test to mac project. by pinkerton@google.com · 16 years ago
  14. 9157ec7 I came across this when looking at MessageLoop recently. by sky@google.com · 16 years ago
  15. 4487dd7 Remove all the C-style string munging, making this easier to port to Linux. by evanm@google.com · 16 years ago
  16. 3948d4d Fixes word_iterator to actually compile. Next time, never just paste code in that _should_ fix things without actually compiling :( by avi@google.com · 16 years ago
  17. 306d731 Remove an illegal const. by paulg@google.com · 16 years ago
  18. 1818847 Move Ranges to std::vector<Sample>, as <const Sample> is invalid if you want to assign to elements of the vector. This now compiles under GCC. by deanm@google.com · 16 years ago
  19. 7ba78d7 Make POSIX time routines work on Linux by providing a POSIX-conformant version of TimeTicks::Now() to replace the Mach-specific one used on the Mac. by mmentovai@google.com · 16 years ago
  20. 1af6493 Replace a todo with NOTIMPLEMENTED(). by ericroman@google.com · 16 years ago
  21. 3620e4c recursive_mutex by erikkay@google.com · 16 years ago
  22. c62bf35 Provide cross-platform implementation of WaitableEvent for use on Mac and Linux. by darin@google.com · 16 years ago
  23. 4c68cc6 Allow multiple AtExitManagers to be chained in a stack, this allows much easier testing for code that is expecting to be run via an AtExitManager. This actually cleaned up a lot of the at exit code. by deanm@google.com · 16 years ago
  24. 1a04df2 Define a private IDMap::iterator, and use our own iterator / const_iterator. by deanm@google.com · 16 years ago
  25. d4b79e0 HashTable is a dependent name, since it's based on the template parameter T. Use typename for derived types, this will now build on GCC. by deanm@google.com · 16 years ago
  26. 461aaed Remove class scoping operator from Pickle method declaration. by deanm@google.com · 16 years ago
  27. 43ecd4a Even though AtExit should never be called while an object is being accessed, it is cleaner and a bit safer to doing an AtomicExchange, so instance_ is not kept as the pointer value while we're deleting it. This also moves an unsafe direct access to the AtomicWord to calling through the atomic API. by deanm@google.com · 16 years ago
  28. 7b4ca01 Add a NOTIMPLEMENTED() macro to annotate the code paths which need revisiting for the mac/linux port. by ericroman@google.com · 16 years ago
  29. ec36911 I suspect this comment was not intended... by ericroman@google.com · 16 years ago
  30. 1efaea6 rollback the experiments by darin@google.com · 16 years ago
  31. 9389b55 experiment with APCs by darin@google.com · 16 years ago
  32. f0ed26d just a test... by darin@google.com · 16 years ago
  33. e8fc656 A basic wrapper for a windows event object that encapsulates the way we often use windows events. This API is not meant to be compatible with ObjectWatcher or MessageLoop::WatchObject. This API is meant to be easily ported to Mac & Linux using a traditional mutex and condition variable pairing. by darin@google.com · 16 years ago
  34. 989d5f8 Fix bug 1317458: Busy wait in IPC::SyncChannel::Send in some cases by mpcomplete@google.com · 16 years ago
  35. cc1eb1b Add deps files and rules for the checkdeps script. by brettw@google.com · 16 years ago
  36. 491d873 Add some extra test cases for whitespace at start/end of number. by ericroman@google.com · 16 years ago
  37. b38cbcf pulling in more files to run more unit tests by pinkerton@google.com · 16 years ago
  38. 0c0e01c fix base test harness to work on mac. fix command_line unit tests to match what windows expects. fix base xcode project to separate building and running unit tests into two targets. by pinkerton@google.com · 16 years ago
  39. 9fc57d0 * add base_paths_mac.mm to mac port by erikkay@google.com · 16 years ago
  40. 2919c09 Stub out unused Windows specific code. by paulg@google.com · 16 years ago
  41. 79ea2c8 MemoryDebug uses size_t, which portably comes from <sys/types.h>. Use "base/basictypes.h" to get it, and clean up a couple other things. by mmentovai@google.com · 16 years ago
  42. 59ccca6 pull out command_line_unittest until it works by pinkerton@google.com · 16 years ago
  43. 670ea47 Remove cruft of old unit test harness, replace it with gTest goodness. Fix extern-ness of a couple of globals in command_line. by pinkerton@google.com · 16 years ago
  44. a6b1b7d Catch up SCons build with latest changes: by sgk@google.com · 16 years ago
  45. d3bb16f Fix memory leak and assert that the values are correct. by tc@google.com · 16 years ago
  46. 15f4b11 Add observer_list_unittest.cc to base test target. Fix gcc warnings with virtual methods w/ non-virtual dtor and members being initialized in the init-list in the wrong order. by pinkerton@google.com · 16 years ago
  47. 79e1c38 Add Lock and LockImpl to the test target to get it linking. by mmentovai@google.com · 16 years ago
  48. f5a4000 Port LockImpl, Lock, and ConditionVariable to pthreads-supporting platforms. by mmentovai@google.com · 16 years ago
  49. ce96727 fix recursion by pinkerton@google.com · 16 years ago
  50. 56053fe Logging cleanup for mac and linux by pinkerton@google.com · 16 years ago
  51. 5ed85e5 Remove the first line filename comment to make this consistent with the rest by deanm@google.com · 16 years ago
  52. 890e9ec rollback my experiment to see the effects by darin@google.com · 16 years ago
  53. 3ce34ed This is a revised CB of issue 738 and 764 (which were made by jungshik@google.com · 16 years ago
  54. 3117767 Remove a NOTREACHED() that was causing a dialog box during unit tests, hence by maruel@google.com · 16 years ago
  55. c5c7a72 Complete brett's string conversion goodness for utf32 platforms. by pinkerton@google.com · 16 years ago
  56. d5fb8e9 Fix an accidental nested extern and conversion cleanup from brett's landing. by pinkerton@google.com · 16 years ago
  57. 8f62469 remove fixed_string from build. by pinkerton@google.com · 16 years ago
  58. c8f2c7a Removing unnecessary information; it's not clarifying things. by avi@google.com · 16 years ago
  59. 26e717a Add a unit test for WordIterator. Fix word_iterator.* includes at the same time. by maruel@google.com · 16 years ago
  60. fa49905 Add UTF-16 <-> Wide conversions for Mac. by brettw@google.com · 16 years ago
  61. 15cfc7f Improve PathServiceTest test by verifying that the returned path exists. by maruel@google.com · 16 years ago
  62. 4be2f9b Port in threading for Posix. Will require fixes to MessageLoop and Task to compile on the Mac, though. by avi@google.com · 16 years ago
  63. 91cdff8 Pinkerton's port/fix-up of command-line processing to work cross-platform. by evanm@google.com · 16 years ago
  64. 2edb5e7 This is an experiment to see the impact of a boosted priority on the page by darin@google.com · 16 years ago
  65. af21869 Fix sys_string_conversions for use on the Mac. by mmentovai@google.com · 16 years ago
  66. b8a8f37 Rename and remove a bunch of string functions. by evanm@google.com · 16 years ago
  67. e3c034a Add defines for the size of wchar_t to build_config.h. Use this in places where we currently have an OS-specific check. by brettw@google.com · 16 years ago
  68. 8dcf71c Cross-platform portability fixes for JSONReader. Adds generic string-to-double parsing and tests in string_util. by mmentovai@google.com · 16 years ago
  69. a01bb10 Reapply 508 to determine if it was indeed the cause of the webkit-release-playback failure. by maruel@google.com · 16 years ago
  70. fed55ab Remove the old NativeMB functions from string util, and use the new ones in sys_strings.h. I also removed duplicated code from the sandbox that can now use this, and fixed one case in the bug reporter that should not have been using the native multibyte encoding. by brettw@google.com · 16 years ago
  71. 8ba9dfb Revert part of r508, it may have broken webkit-release-playback. by deanm@google.com · 16 years ago
  72. 22e336e Make base/SConstruct just like chrome/SConstruct for linux building. by deanm@google.com · 16 years ago
  73. 0c4e80a Remove the old atomic operations interface. by deanm@google.com · 16 years ago
  74. 981d057 ICU isn't packaged on the Mac as it is on Windows. by avi@google.com · 16 years ago
  75. 75df310 Some cross platform changes and general cleanups to Pickle. by deanm@google.com · 16 years ago
  76. 7b7151e Remove the LOCKED_EXPRESSION macro, it's clumbsy and unused. by deanm@google.com · 16 years ago
  77. 3138c85 Use 0 instead of NULL, since AtomicWord is intptr_t which is not a pointer type. GCC warns when converting NULL to a non-pointer type. by deanm@google.com · 16 years ago
  78. f9e7293 Fix cut-and-paste error so we only try to build mac files on, gee, the mac... by sgk@google.com · 16 years ago
  79. c4d0311 Add new sys_string_conversions_*.cc files to the SCons build. TBR: brettw by sgk@google.com · 16 years ago
  80. 7bea9d1 This is the addition of the system-dependent string conversions. This is just the new code and changing logging to use it. I will change other things to use this and delete the code in string_util in a subsequent pass. by brettw@google.com · 16 years ago
  81. 4d1ce05 Apparently, our WndProc can get called for other HWNDs :( by darin@google.com · 16 years ago
  82. 3810032 just some hopefully non-contentious stuff to get out of the way before doing the real MessageLoop changes. by darin@google.com · 16 years ago
  83. 21f65a1 Drop FixedString. It's only used in two places, one where it doesn't really matter and the other where it was incorrect. by evanm@google.com · 16 years ago
  84. d0bc564 Revert base/base_path.cc (r450) since it caused large scale unit test failure. by maruel@google.com · 16 years ago
  85. 79504f6 Add missing file_util_win.cc file. TBR: bradnelson by sgk@google.com · 16 years ago
  86. 8227724 Fixing up the basic set of geometry. by avi@google.com · 16 years ago
  87. b644fa8 We use intptr_t in various points in the code. by evanm@google.com · 16 years ago
  88. 825f879 Fix base::DIR_SOURCE_ROOT path calculation. by maruel@google.com · 16 years ago
  89. ef7ff55 Revert change 430 because it breaks the build. by nsylvain@google.com · 16 years ago
  90. 1d4507f Refactoring file_util into file_util and file_util_win. Also fix windows dependencies in path_service.cc. by erikkay@google.com · 16 years ago
  91. ac68ba2 Mac changes to the path service. by avi@google.com · 16 years ago
  92. 4a5b627 Portability fix for Value. The MSVC CRT doesn't complain about memcpy_s unless _CRT_SECURE_DEPRECATE_MEMORY is defined (and it isn't); there are no other callers of memcpy_s in base. (And seriously, what's an extra count argument supposed to solve, anyway?) current_entry_type is dropped because it's unused. A virtual destructor is added to ValueSerializer to conform to the style guide and quiet gcc's helpful warning. by mmentovai@google.com · 16 years ago
  93. ef3ae5a Portability fix for JSONWriter. gcc warns when the declaration order doesn't match the initialization order. Tossed in a couple of changes for better style guide conformance for good measure. by mmentovai@google.com · 16 years ago
  94. 602a3cf Fix incorrect OS_APPLE to OS_MACOSX and drop COMPILER_GCC since the code by deanm@google.com · 16 years ago
  95. e3eb63f Use our own hash function that supports embedded NULLs for both char and wchar strings by pinkerton@google.com · 16 years ago
  96. 49d68b6 Changes for POSIX support. Yay for ifdefs! by pinkerton@google.com · 16 years ago
  97. ffbd959 Compiler changes to work with GCC by pinkerton@google.com · 16 years ago
  98. c354528 Move base/timer from deprecated atomic interface to AtomicSequenceNumber. by deanm@google.com · 16 years ago
  99. b8855f5 Move ref_counted to the new atomic_ref_count interface. by deanm@google.com · 16 years ago
  100. dacfeb5 Cross platform and cleanup of Singleton class by deanm@google.com · 16 years ago