Moved bug to external tracker.
TBR=nsylvain
Review URL: http://codereview.chromium.org/118085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17347 0039d316-1c4b-4281-b951-d872f2087c98
CrOS-Libchrome-Original-Commit: 390c4bf52cc30467227f2ad50bff4d12910da27c
diff --git a/base/pickle.cc b/base/pickle.cc
index 1aeb1f4..5e249c7 100644
--- a/base/pickle.cc
+++ b/base/pickle.cc
@@ -96,8 +96,8 @@
if (!IteratorHasRoomFor(*iter, sizeof(*result)))
return false;
- // TODO(jar) bug 1129285: Pickle should be cleaned up, and not dependent on
- // alignment.
+ // TODO(jar): http://crbug.com/13108 Pickle should be cleaned up, and not
+ // dependent on alignment.
// Next line is otherwise the same as: memcpy(result, *iter, sizeof(*result));
*result = *reinterpret_cast<int*>(*iter);
@@ -113,8 +113,8 @@
if (!IteratorHasRoomFor(*iter, sizeof(*result)))
return false;
- // TODO(jar) bug 1129285: Pickle should be cleaned up, and not dependent on
- // alignment.
+ // TODO(jar): http://crbug.com/13108 Pickle should be cleaned up, and not
+ // dependent on alignment.
memcpy(result, *iter, sizeof(*result));
UpdateIter(iter, sizeof(*result));
@@ -135,8 +135,8 @@
if (!IteratorHasRoomFor(*iter, sizeof(*result)))
return false;
- // TODO(jar) bug 1129285: Pickle should be cleaned up, and not dependent on
- // alignment.
+ // TODO(jar): http://crbug.com/13108 Pickle should be cleaned up, and not
+ // dependent on alignment.
// Next line is otherwise the same as: memcpy(result, *iter, sizeof(*result));
*result = *reinterpret_cast<size_t*>(*iter);