1. 7a424887 Trim some headers from base/memory/scoped_ptr.h by dcheng · 9 years ago
  2. f464b0d Remove overloads for comparing std::unique_ptr to std::nullpt_t. by dcheng · 9 years ago
  3. ba7fcd6 Remove legacy scoped_ptr implementation. by dcheng · 9 years ago
  4. bd780bf Change scoped_ptr to a type alias for std::unique_ptr for OS_MACOSX by dcheng · 9 years ago
  5. 9502adfa9 Change scoped_ptr to a type alias for std::unique_ptr for OS_ANDROID by dcheng · 9 years ago
  6. 403cb6c Replace template_util.h stuff with C++11 <type_traits> by tzik · 9 years ago
  7. 8a976c4e Fix compilation error with older versions of libstdc++ by kmackay · 9 years ago
  8. 9fd4ab6 Change scoped_ptr to a type alias for std::unique_ptr on OS_WIN by dcheng · 9 years ago
  9. 6e5c22f9 Change scoped_ptr to be a type alias for std::unique_ptr on OS_LINUX. by dcheng · 9 years ago
  10. 88a9c91e Use DCHECK instead of <assert.h> in scoped_ptr.h. by nick · 9 years ago
  11. 28aacfca Document use of "Safe Bool Idiom" in base/memory/pointer types. by scheib · 9 years ago
  12. 9beac25 Switch to standard integer types in base/memory/. by avi · 10 years ago
  13. 096369a Fix nocompile base_unittests by tzik · 10 years ago
  14. 6ba4c1e Rename MOVE_ONLY_TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03 by danakj · 10 years ago
  15. 0c8d4aa base: Use std::move() instead of Pass() for real movable types. by danakj · 10 years ago
  16. 4ec0dff Switch to static_assert in base/. by avi · 10 years ago
  17. ecdd662b Add a move constructor and move assignment operator to scoped_ptr. by dcheng · 10 years ago
  18. 6120123 Try to remove <algorithm> header from scoped_ptr.h, again. by dcheng · 10 years ago
  19. b5c3eed Temporarily re-add #include <algorithm> to scoped_ptr.h by Daniel Cheng · 10 years ago
  20. 0917ec4 Use std::default_delete as the default deleter for scoped_ptr. by dcheng · 10 years ago
  21. 81994795 Make operators on scoped_ptr match the ones defined for std::unique_ptr by danakj · 10 years ago
  22. 7fa14e3 Call reset(nullptr) in scoped_ptr's destructor. by amistry · 10 years ago
  23. 0db76ee Revert of Call reset(nullptr) in scoped_ptr's. (patchset #7 id:120001 of https://codereview.chromium.org/1356483002/ ) by perkj · 10 years ago
  24. cf9db6e Call reset(nullptr) in scoped_ptr's destructor. by amistry · 10 years ago
  25. 0d4ef258 Change scoped_ptr::reset()'s behaviour to match unique_ptr. by amistry · 10 years ago
  26. a5f0d96bc Remove base's implicit_cast. by danakj · 10 years ago
  27. 12fcf61b Make logging a scoped_ptr<T> more useful. by dcheng · 11 years ago
  28. 19b6b65 Clean up final uses of scoped_ptr<T>::PassAs() and remove it. by dcheng · 11 years ago
  29. 9961abd Allow custom deleters to opt out of self reset checks for scoped_ptr. by dcheng · 11 years ago
  30. ee122963 base: Make scoped_ptr::Pass() act like std::move(). by danakj · 11 years ago
  31. 36a3e811 Revert of Revert of Add nullptr support to scoped_ptr. (patchset #1 id:1 of https://codereview.chromium.org/604423005/) by eustas · 11 years ago
  32. 300249a Revert of Add nullptr support to scoped_ptr. (patchset #8 id:200001 of https://codereview.chromium.org/599313003/) by eustas · 11 years ago
  33. a9527ce Add nullptr support to scoped_ptr. by danakj · 11 years ago
  34. 3e0ecf44 Revert of Add nullptr support to scoped_ptr. (patchset #7 id:180001 of https://codereview.chromium.org/599313003/) by dcheng · 11 years ago
  35. 2299e91 Add nullptr support to scoped_ptr. by danakj · 11 years ago
  36. b26c1533 Convert scoped_ptr_malloc -> scoped_ptr, part 6. by [email protected] · 11 years ago
  37. a1d076ee Make scoped_ptr_malloc abort() on an invalid assignment. by [email protected] · 11 years ago
  38. e6417df3 Typo fix in scoped_ptr.h comment by [email protected] · 12 years ago
  39. e18e2d5 Grammar fix in scoped_ptr.h comment by [email protected] · 12 years ago
  40. ecfdc7c Update a comment to align with the behaviour of the code. by [email protected] · 12 years ago
  41. ad73b8ac Disallow explicit scoped_ptr<T> construction from NULL. by [email protected] · 12 years ago
  42. 380b139 Make expressions like "if (weak_ptr)" work by [email protected] · 12 years ago
  43. 47397728 Remove scoped_array from Chromium. by [email protected] · 12 years ago
  44. c37cc3e Revert 194649 "Remove scoped_array from Chromium." by [email protected] · 12 years ago
  45. 8c651d9 Remove scoped_array from Chromium. by [email protected] · 12 years ago
  46. 24f7de85 Update scoped_array<T>::reset logic to match scoped_ptr. by [email protected] · 12 years ago
  47. fc4fccd Make scoped_array<T> more compatible with scoped_ptr<T[]>. by [email protected] · 12 years ago
  48. fe65d95 Update scoped_ptr<T>::reset() to more closely match std::unique_ptr<T>. by [email protected] · 12 years ago
  49. b102bbd Revert 184179 by [email protected] · 13 years ago
  50. f4f4a42 Update scoped_ptr<T>::reset() to more closely match std::unique_ptr<T>. by [email protected] · 13 years ago
  51. 7840a7b Break the debug build if a scoped_ptr self-reset is detected. by [email protected] · 13 years ago
  52. 08e710346 Fix scoped_ptr<T[]> to disallow construction and reset from NULL. by [email protected] · 13 years ago
  53. 6d6f658 Equality on scoped_ptr can be done with const pointers. by [email protected] · 13 years ago
  54. 6c59ab46 Extend scoped_ptr to be closer to unique_ptr. Support custom deleters, and deleting arrays. by [email protected] · 13 years ago
  55. f85313a7 Revert 165006 - Revert 165005 until skia_webkit.gyp is present everywhere. by [email protected] · 13 years ago
  56. dc629f8 Revert 165005 until skia_webkit.gyp is present everywhere. by [email protected] · 13 years ago
  57. e95d6ed Fix move.h's to use a concrete RValue carrier object rather than hacking a RValue&. by [email protected] · 13 years ago
  58. 80ef68889 Allow scoped_ptr variables to be used in boolean expressions by [email protected] · 13 years ago
  59. 01c86ec Remove the rest of #pragma once in one big CL. by [email protected] · 13 years ago
  60. 1e4770f Fix scoped_ptr::Pass to not rely on undefined behavior by [email protected] · 13 years ago
  61. 568fdb74 Add make_scoped_ptr to scoped_ptr.h by [email protected] · 13 years ago
  62. e9b738e Make sure that scoped_ptr<> cannot be used with ref-counted objects. by [email protected] · 13 years ago
  63. 6e29d6f3 Add scoped_ptr<>::PassAs<>(). by [email protected] · 14 years ago
  64. 0827a44 remove ; which breaks nacl_integration since they use -pedantic by [email protected] · 14 years ago
  65. 59e639ae Transfer the C++03 move-only type emulation into base/move.h and also make ScopedVector move-only. by [email protected] · 14 years ago
  66. 1b9718f6 Allow construction and assignment of one scoped_ptr from another if the types are convertible. by [email protected] · 14 years ago
  67. 206a2ae8 Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array.... by [email protected] · 14 years ago
  68. 088badb Revert 115441 - Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array.... by [email protected] · 14 years ago
  69. 014d0f6 Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array.... by [email protected] · 14 years ago
  70. 54af837 Revert of "Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_ar..." by [email protected] · 14 years ago
  71. f512235 Revert of "Revert of "Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr..." by [email protected] · 14 years ago
  72. 4133452b Revert "Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array...." by [email protected] · 14 years ago
  73. 6a84997 Redo r113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array.... by [email protected] · 14 years ago
  74. 3e6d120b Revert 113722 - Add Pass(), which implements move semantics, to scoped_ptr, scoped_array, and scoped_ptr_malloc. by [email protected] · 14 years ago
  75. 63a8224 Add Pass(), which implements move semantics, to scoped_ptr, scoped_array, and scoped_ptr_malloc. by [email protected] · 14 years ago
  76. 3452428 Remove the free_ member of scoped_ptr_malloc. by [email protected] · 14 years ago
  77. 3b63f8f4 Move some files from base to base/memory. by [email protected] · 14 years ago