Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Issue 121643003: Reorganize net/disk_cache into backend specific directories. (Closed)

Created:
6 years, 12 months ago by gavinp
Modified:
6 years, 9 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, gavinp+disk_chromium.org
Visibility:
Public.

Description

Reorganize net/disk_cache into backend specific directories. We want to unlink the blockfile cache on Android, and it seems that we'll want more platforms with more varieties of backend in the future. So let's move the backend into its own subdirectory as we start to untangle the dependencies from tests/etc... into their respective backends. This initial checkin isn't perfect; in particular the tests have a lot of v2 specific dependencies still. R=rvargas@chromium.org, cbentzel, rvargas TBR=mmenke@chromium.org BUG=331062 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=253581

Patch Set 1 #

Patch Set 2 : fix stress_cache, order in net.gyp #

Patch Set 3 : rebase only #

Patch Set 4 : fix windows build #

Patch Set 5 : move cache_util up a directory #

Patch Set 6 : fix cache_creator #

Patch Set 7 : rebase only #

Patch Set 8 : rebase to master #

Patch Set 9 : rebase to trunk, some include order fixes #

Patch Set 10 : rebase to trunk #

Patch Set 11 : rebsae #

Patch Set 12 : rebase, fix conflicts #

Patch Set 13 : include order fix #

Patch Set 14 : net.gyp order #

Patch Set 15 : add missing file, update macro names #

Patch Set 16 : blockfile/v3/ -> v3/, blockfile/ -> v2/ #

Patch Set 17 : more include fixes #

Total comments: 1

Patch Set 18 : #define fixes #

Total comments: 17

Patch Set 19 : rebase in prep of rename #

Patch Set 20 : rename to new structure #

Patch Set 21 : clean up some #INCLUDEs. #

Patch Set 22 : rebase to upstream #

Total comments: 9

Patch Set 23 : rebase & remediate #

Total comments: 1

Patch Set 24 : rebase of patchset 22 #

Patch Set 25 : reupload of patchset 23 #

Patch Set 26 : rebase in preparation for landing #

Patch Set 27 : rebase again for landing #

Patch Set 28 : rebase again for landing #

Patch Set 29 : rebase again for landing #

Patch Set 30 : rebase again for landing #

Patch Set 31 : rebase again for landing #

Patch Set 32 : rebase again for landing #

Patch Set 33 : rebase again for landing #

Patch Set 34 : rebase again for landing #

Patch Set 35 : rebase again for landing #

Patch Set 36 : rebase again for landing #

Patch Set 37 : rebase again for landing #

Patch Set 38 : rebase again for landing #

Patch Set 39 : fix ios breakage #

Unified diffs Side-by-side diffs Delta from patch set Stats (+431 lines, -25009 lines) Patch
M chrome/browser/net/http_pipelining_compatibility_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
D net/disk_cache/addr.h View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -188 lines 0 comments Download
D net/disk_cache/addr.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -92 lines 0 comments Download
D net/disk_cache/addr_unittest.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -59 lines 0 comments Download
D net/disk_cache/backend_impl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -400 lines 0 comments Download
D net/disk_cache/backend_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -2100 lines 0 comments Download
M net/disk_cache/backend_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +7 lines, -7 lines 0 comments Download
D net/disk_cache/bitmap.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -136 lines 0 comments Download
D net/disk_cache/bitmap.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -311 lines 0 comments Download
D net/disk_cache/bitmap_unittest.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -293 lines 0 comments Download
D net/disk_cache/block_files.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -169 lines 0 comments Download
D net/disk_cache/block_files.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -733 lines 0 comments Download
D net/disk_cache/block_files_unittest.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -350 lines 0 comments Download
A + net/disk_cache/blockfile/addr.h View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/addr.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/addr_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/backend_impl.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -10 lines 0 comments Download
A + net/disk_cache/blockfile/backend_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -7 lines 0 comments Download
A + net/disk_cache/blockfile/backend_impl_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -10 lines 0 comments Download
A + net/disk_cache/blockfile/backend_impl_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +9 lines, -9 lines 0 comments Download
A + net/disk_cache/blockfile/backend_worker_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +10 lines, -10 lines 0 comments Download
A + net/disk_cache/blockfile/backend_worker_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/bitmap.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/bitmap.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/bitmap_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/block_bitmaps_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/block_bitmaps_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/block_bitmaps_v3_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/block_files.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/block_files.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
net/disk_cache/blockfile/block_files_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/block_files_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/disk_cache_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/disk_format.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/disk_format.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/disk_format_base.h View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/disk_format_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/entry_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/entry_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/entry_impl_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/entry_impl_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/errors.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/eviction.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/eviction.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -7 lines 0 comments Download
A + net/disk_cache/blockfile/eviction_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/eviction_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -9 lines 0 comments Download
A + net/disk_cache/blockfile/experiments.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/file.h View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/file.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/file_block.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/file_ios.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/file_lock.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/file_lock.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/file_posix.cc View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/file_win.cc View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/histogram_macros.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/histogram_macros_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/in_flight_backend_io.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/in_flight_backend_io.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/in_flight_io.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/in_flight_io.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/index_table_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/index_table_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/index_table_v3_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/mapped_file.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/mapped_file.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/mapped_file_posix.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/mapped_file_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/mapped_file_win.cc View 1 2 3 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/rankings.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +6 lines, -6 lines 0 comments Download
A + net/disk_cache/blockfile/rankings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +7 lines, -7 lines 0 comments Download
A + net/disk_cache/blockfile/sparse_control.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/sparse_control.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/sparse_control_v3.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/sparse_control_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/blockfile/stats.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/stats.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
A + net/disk_cache/blockfile/stats_histogram.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
net/disk_cache/blockfile/stats_histogram.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/stats_histogram.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
A + net/disk_cache/blockfile/storage_block.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/storage_block-inl.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -5 lines 0 comments Download
A + net/disk_cache/blockfile/storage_block_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/stress_cache.cc View 1 2 3 4 5 6 7 8 9 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/stress_support.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/trace.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/blockfile/trace.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
M net/disk_cache/cache_creator.cc View 1 2 3 4 5 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
D net/disk_cache/disk_cache_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -250 lines 0 comments Download
M net/disk_cache/disk_cache_test_base.cc View 1 2 3 4 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
M net/disk_cache/disk_cache_test_util.cc View 1 2 3 4 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
D net/disk_cache/disk_format.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -153 lines 0 comments Download
D net/disk_cache/disk_format.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -15 lines 0 comments Download
D net/disk_cache/disk_format_base.h View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -132 lines 0 comments Download
D net/disk_cache/entry_impl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -278 lines 0 comments Download
D net/disk_cache/entry_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -1553 lines 0 comments Download
M net/disk_cache/entry_unittest.cc View 1 2 3 4 5 6 7 8 9 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +3 lines, -3 lines 0 comments Download
D net/disk_cache/errors.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -33 lines 0 comments Download
D net/disk_cache/eviction.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -91 lines 0 comments Download
D net/disk_cache/eviction.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -600 lines 0 comments Download
D net/disk_cache/experiments.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -28 lines 0 comments Download
D net/disk_cache/file.h View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -100 lines 0 comments Download
D net/disk_cache/file.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -16 lines 0 comments Download
D net/disk_cache/file_block.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -31 lines 0 comments Download
D net/disk_cache/file_ios.cc View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -312 lines 0 comments Download
D net/disk_cache/file_lock.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -45 lines 0 comments Download
D net/disk_cache/file_lock.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -47 lines 0 comments Download
D net/disk_cache/file_posix.cc View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -202 lines 0 comments Download
D net/disk_cache/file_win.cc View 1 2 3 4 5 6 7 8 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -274 lines 0 comments Download
D net/disk_cache/histogram_macros.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -122 lines 0 comments Download
D net/disk_cache/in_flight_backend_io.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -223 lines 0 comments Download
D net/disk_cache/in_flight_backend_io.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -525 lines 0 comments Download
D net/disk_cache/in_flight_io.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -136 lines 0 comments Download
D net/disk_cache/in_flight_io.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -110 lines 0 comments Download
D net/disk_cache/mapped_file.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -78 lines 0 comments Download
D net/disk_cache/mapped_file.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -35 lines 0 comments Download
D net/disk_cache/mapped_file_avoid_mmap_posix.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -63 lines 0 comments Download
D net/disk_cache/mapped_file_posix.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -54 lines 0 comments Download
D net/disk_cache/mapped_file_unittest.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -141 lines 0 comments Download
D net/disk_cache/mapped_file_win.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -55 lines 0 comments Download
D net/disk_cache/mem_backend_impl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -120 lines 0 comments Download
D net/disk_cache/mem_backend_impl.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -337 lines 0 comments Download
D net/disk_cache/mem_entry_impl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -185 lines 0 comments Download
D net/disk_cache/mem_entry_impl.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -631 lines 0 comments Download
D net/disk_cache/mem_rankings.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -44 lines 0 comments Download
D net/disk_cache/mem_rankings.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -67 lines 0 comments Download
A + net/disk_cache/memory/mem_backend_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +4 lines, -4 lines 0 comments Download
A + net/disk_cache/memory/mem_backend_impl.cc View 1 2 3 4 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
A + net/disk_cache/memory/mem_entry_impl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/memory/mem_entry_impl.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +2 lines, -2 lines 0 comments Download
A + net/disk_cache/memory/mem_rankings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +3 lines, -3 lines 0 comments Download
A + net/disk_cache/memory/mem_rankings.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
D net/disk_cache/rankings.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -214 lines 0 comments Download
D net/disk_cache/rankings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -925 lines 0 comments Download
D net/disk_cache/sparse_control.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -177 lines 0 comments Download
D net/disk_cache/sparse_control.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -886 lines 0 comments Download
D net/disk_cache/stats.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -105 lines 0 comments Download
D net/disk_cache/stats.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -312 lines 0 comments Download
D net/disk_cache/stats_histogram.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -58 lines 0 comments Download
D net/disk_cache/stats_histogram.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -94 lines 0 comments Download
D net/disk_cache/storage_block.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -97 lines 0 comments Download
D net/disk_cache/storage_block-inl.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -205 lines 0 comments Download
D net/disk_cache/storage_block_unittest.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -72 lines 0 comments Download
D net/disk_cache/stress_cache.cc View 1 2 3 4 5 6 7 8 9 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -294 lines 0 comments Download
D net/disk_cache/stress_support.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -39 lines 0 comments Download
D net/disk_cache/trace.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -41 lines 0 comments Download
D net/disk_cache/trace.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -192 lines 0 comments Download
A + net/disk_cache/tracing/tracing_cache_backend.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +7 lines, -4 lines 0 comments Download
A + net/disk_cache/tracing/tracing_cache_backend.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
D net/disk_cache/tracing_cache_backend.h View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -81 lines 0 comments Download
D net/disk_cache/tracing_cache_backend.cc View 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -317 lines 0 comments Download
D net/disk_cache/v3/backend_impl_v3.h View 1 2 3 4 5 6 7 8 9 10 11 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -283 lines 0 comments Download
D net/disk_cache/v3/backend_impl_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -1607 lines 0 comments Download
D net/disk_cache/v3/backend_worker.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -60 lines 0 comments Download
D net/disk_cache/v3/backend_worker.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -485 lines 0 comments Download
D net/disk_cache/v3/block_bitmaps.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -65 lines 0 comments Download
D net/disk_cache/v3/block_bitmaps.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -178 lines 0 comments Download
D net/disk_cache/v3/block_bitmaps_unittest.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -70 lines 0 comments Download
D net/disk_cache/v3/disk_format_v3.h View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -246 lines 0 comments Download
D net/disk_cache/v3/entry_impl_v3.h View 1 2 3 4 5 6 7 8 9 10 11 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -208 lines 0 comments Download
D net/disk_cache/v3/entry_impl_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -1464 lines 0 comments Download
D net/disk_cache/v3/eviction_v3.h View 1 2 3 4 5 6 7 8 9 10 11 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -78 lines 0 comments Download
D net/disk_cache/v3/eviction_v3.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -514 lines 0 comments Download
D net/disk_cache/v3/histogram_macros.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -119 lines 0 comments Download
D net/disk_cache/v3/index_table.h View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -279 lines 0 comments Download
D net/disk_cache/v3/index_table.cc View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -1149 lines 0 comments Download
D net/disk_cache/v3/index_table_unittest.cc View 1 2 3 4 5 6 7 8 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -706 lines 0 comments Download
D net/disk_cache/v3/sparse_control_v3.h View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -175 lines 0 comments Download
D net/disk_cache/v3/sparse_control_v3.cc View 16 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +0 lines, -868 lines 0 comments Download
M net/net.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 7 chunks +100 lines, -99 lines 0 comments Download
M net/tools/crash_cache/crash_cache.cc View 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download
M net/tools/dump_cache/cache_dumper.h View 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
M net/tools/dump_cache/cache_dumper.cc View 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
M net/tools/dump_cache/dump_cache.cc View 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +1 line, -1 line 0 comments Download
M net/tools/dump_cache/dump_files.cc View 1 2 3 4 5 6 7 8 9 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +6 lines, -6 lines 0 comments Download
M net/tools/dump_cache/upgrade_win.cc View 1 2 3 4 5 6 7 8 9 17 18 19 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 47 (0 generated)
gavinp
Ricardo, I'm going to take another look over this myself before Monday, so you might ...
6 years, 12 months ago (2013-12-27 20:39:29 UTC) #1
rvargas (doing something else)
On 2013/12/27 20:39:29, gavinp wrote: > Ricardo, > > I'm going to take another look ...
6 years, 12 months ago (2013-12-28 02:43:58 UTC) #2
gavinp
On 2013/12/28 02:43:58, rvargas wrote: > On 2013/12/27 20:39:29, gavinp wrote: > > Ricardo, > ...
6 years, 11 months ago (2013-12-30 16:18:44 UTC) #3
gavinp
Do you think we can advance this review? Rebasing this, and the two downstream reviews ...
6 years, 11 months ago (2014-01-22 00:31:29 UTC) #4
rvargas (doing something else)
It was not clear to me that this was blocked in my part. Please ping ...
6 years, 11 months ago (2014-01-22 01:21:32 UTC) #5
gavinp
On 2014/01/22 01:21:32, rvargas wrote: > It was not clear to me that this was ...
6 years, 11 months ago (2014-01-27 11:58:22 UTC) #6
rvargas (doing something else)
On 2014/01/27 11:58:22, gavinp wrote: > On 2014/01/22 01:21:32, rvargas wrote: > > It was ...
6 years, 10 months ago (2014-01-28 21:15:38 UTC) #7
gavinp
+cbentzel Ricardo, I'm inviting Chris to come take a look here; it's getting a bit ...
6 years, 10 months ago (2014-02-04 19:35:38 UTC) #8
rvargas (doing something else)
Keep in mind that there was a concrete proposal more than a month ago to ...
6 years, 10 months ago (2014-02-04 20:11:25 UTC) #9
cbentzel
On 2014/02/04 20:11:25, rvargas wrote: > Keep in mind that there was a concrete proposal ...
6 years, 10 months ago (2014-02-05 01:26:36 UTC) #10
cbentzel
On 2014/02/04 20:11:25, rvargas wrote: > Keep in mind that there was a concrete proposal ...
6 years, 10 months ago (2014-02-05 01:26:43 UTC) #11
cbentzel
On 2014/02/05 01:26:43, cbentzel wrote: > On 2014/02/04 20:11:25, rvargas wrote: > > Keep in ...
6 years, 10 months ago (2014-02-05 11:14:29 UTC) #12
cbentzel
On 2014/02/05 11:14:29, cbentzel wrote: > On 2014/02/05 01:26:43, cbentzel wrote: > > On 2014/02/04 ...
6 years, 10 months ago (2014-02-05 13:45:13 UTC) #13
gavinp
On 2014/02/05 13:45:13, cbentzel wrote: > On 2014/02/05 11:14:29, cbentzel wrote: > > On 2014/02/05 ...
6 years, 10 months ago (2014-02-05 14:05:42 UTC) #14
gavinp
On 2014/02/05 11:14:29, cbentzel wrote: > On 2014/02/05 01:26:43, cbentzel wrote: > > On 2014/02/04 ...
6 years, 10 months ago (2014-02-05 17:10:02 UTC) #15
gavinp
https://codereview.chromium.org/121643003/diff/2820001/net/disk_cache/v3/backend_impl_v3.cc File net/disk_cache/v3/backend_impl_v3.cc (right): https://codereview.chromium.org/121643003/diff/2820001/net/disk_cache/v3/backend_impl_v3.cc#newcode34 net/disk_cache/v3/backend_impl_v3.cc:34: #define NET_DISK_CACHE_BLOCKFILE_BACKEND_IMPL_CC_ Oopsie. I'll upload a fix to this ...
6 years, 10 months ago (2014-02-05 21:40:52 UTC) #16
rvargas (doing something else)
https://codereview.chromium.org/121643003/diff/3020001/net/disk_cache/memory/mem_backend_impl.h File net/disk_cache/memory/mem_backend_impl.h (right): https://codereview.chromium.org/121643003/diff/3020001/net/disk_cache/memory/mem_backend_impl.h#newcode7 net/disk_cache/memory/mem_backend_impl.h:7: #ifndef NET_DISK_CACHE_MEMORY_MEM_BACKEND_IMPL_H__ NET_DISK_CACHE_MEMORY_MEM_BACKEND_IMPL_H_ (and elsewhere) https://codereview.chromium.org/121643003/diff/3020001/net/disk_cache/v2/histogram_macros.h File net/disk_cache/v2/histogram_macros.h (right): ...
6 years, 10 months ago (2014-02-06 04:21:21 UTC) #17
cbentzel
So, my responses to the questions Gavin proposed were fairly muddled. Here's my proposed directory ...
6 years, 10 months ago (2014-02-07 01:52:37 UTC) #18
cbentzel
So, my responses to the questions Gavin proposed were fairly muddled. Here's my proposed directory ...
6 years, 10 months ago (2014-02-07 01:52:43 UTC) #19
rvargas (doing something else)
On 2014/02/07 01:52:43, cbentzel wrote: > So, my responses to the questions Gavin proposed were ...
6 years, 10 months ago (2014-02-08 04:06:44 UTC) #20
gavinp
On 2014/02/07 01:52:43, cbentzel wrote: > So, my responses to the questions Gavin proposed were ...
6 years, 10 months ago (2014-02-09 15:11:43 UTC) #21
gavinp
PTAL. https://codereview.chromium.org/121643003/diff/3020001/net/disk_cache/memory/mem_backend_impl.h File net/disk_cache/memory/mem_backend_impl.h (right): https://codereview.chromium.org/121643003/diff/3020001/net/disk_cache/memory/mem_backend_impl.h#newcode7 net/disk_cache/memory/mem_backend_impl.h:7: #ifndef NET_DISK_CACHE_MEMORY_MEM_BACKEND_IMPL_H__ On 2014/02/06 04:21:23, rvargas wrote: > ...
6 years, 10 months ago (2014-02-09 15:13:30 UTC) #22
rvargas (doing something else)
https://codereview.chromium.org/121643003/diff/3710001/chrome/browser/net/http_pipelining_compatibility_client.cc File chrome/browser/net/http_pipelining_compatibility_client.cc (left): https://codereview.chromium.org/121643003/diff/3710001/chrome/browser/net/http_pipelining_compatibility_client.cc#oldcode27 chrome/browser/net/http_pipelining_compatibility_client.cc:27: I guess this belongs to another CL https://codereview.chromium.org/121643003/diff/3710001/net/disk_cache/blockfile/backend_worker_v3.h File ...
6 years, 10 months ago (2014-02-11 03:21:26 UTC) #23
gavinp
PTAL. Ricardo, you left a few comments suggesting that v3 specific files being moved from ...
6 years, 10 months ago (2014-02-11 16:37:16 UTC) #24
rvargas (doing something else)
On 2014/02/11 16:37:16, gavinp wrote: > PTAL. > > Ricardo, you left a few comments ...
6 years, 10 months ago (2014-02-11 19:52:40 UTC) #25
rvargas (doing something else)
https://codereview.chromium.org/121643003/diff/3890001/net/disk_cache/blockfile/eviction_v3.cc File net/disk_cache/blockfile/eviction_v3.cc (right): https://codereview.chromium.org/121643003/diff/3890001/net/disk_cache/blockfile/eviction_v3.cc#newcode44 net/disk_cache/blockfile/eviction_v3.cc:44: #define BLOCKFILE_BACKEND_IMPL_OBJ backend_ I know I've mentioned it before, ...
6 years, 10 months ago (2014-02-11 20:15:09 UTC) #26
gavinp
On 2014/02/11 20:15:09, rvargas wrote: > https://codereview.chromium.org/121643003/diff/3890001/net/disk_cache/blockfile/eviction_v3.cc > File net/disk_cache/blockfile/eviction_v3.cc (right): > > https://codereview.chromium.org/121643003/diff/3890001/net/disk_cache/blockfile/eviction_v3.cc#newcode44 > ...
6 years, 10 months ago (2014-02-11 20:39:27 UTC) #27
rvargas (doing something else)
On 2014/02/11 20:39:27, gavinp wrote: > On 2014/02/11 20:15:09, rvargas wrote: > > > https://codereview.chromium.org/121643003/diff/3890001/net/disk_cache/blockfile/eviction_v3.cc ...
6 years, 10 months ago (2014-02-11 21:16:39 UTC) #28
gavinp
On 2014/02/11 21:16:39, rvargas wrote: > On 2014/02/11 20:39:27, gavinp wrote: > > On 2014/02/11 ...
6 years, 10 months ago (2014-02-11 22:28:48 UTC) #29
gavinp
On 2014/02/11 22:28:48, gavinp wrote: > On 2014/02/11 21:16:39, rvargas wrote: > > On 2014/02/11 ...
6 years, 10 months ago (2014-02-11 22:29:23 UTC) #30
gavinp
If you want to see this review based on ToT, let's focus on landing https://codereview.chromium.org/140893013 ...
6 years, 10 months ago (2014-02-11 22:38:27 UTC) #31
rvargas (doing something else)
On 2014/02/11 22:38:27, gavinp wrote: > If you want to see this review based on ...
6 years, 10 months ago (2014-02-12 19:00:16 UTC) #32
rvargas (doing something else)
lgtm
6 years, 10 months ago (2014-02-12 19:42:37 UTC) #33
gavinp
The CQ bit was checked by gavinp@chromium.org
6 years, 10 months ago (2014-02-26 16:32:09 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gavinp@chromium.org/121643003/5770001
6 years, 10 months ago (2014-02-26 16:32:49 UTC) #35
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 10 months ago (2014-02-26 16:33:30 UTC) #36
commit-bot: I haz the power
Failed to apply patch for net/net.gyp: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 10 months ago (2014-02-26 16:33:30 UTC) #37
gavinp
OK, I have given up on making a rietveld upload that doesn't 500, after all ...
6 years, 10 months ago (2014-02-26 19:31:57 UTC) #38
gavinp
The CQ bit was checked by gavinp@chromium.org
6 years, 10 months ago (2014-02-26 19:34:20 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gavinp@chromium.org/121643003/8450002
6 years, 10 months ago (2014-02-26 19:43:27 UTC) #40
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 10 months ago (2014-02-26 20:18:15 UTC) #41
commit-bot: I haz the power
Retried try job too often on chromium_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=chromium_presubmit&number=52219
6 years, 10 months ago (2014-02-26 20:18:15 UTC) #42
gavinp
Committed patchset #38 manually as r253581.
6 years, 10 months ago (2014-02-26 20:23:54 UTC) #43
mmenke
On 2014/02/26 20:23:54, gavinp wrote: > Committed patchset #38 manually as r253581. Gavin: Build failure ...
6 years, 10 months ago (2014-02-26 21:07:59 UTC) #44
gavinp
On 2014/02/26 21:07:59, mmenke wrote: > On 2014/02/26 20:23:54, gavinp wrote: > > Committed patchset ...
6 years, 10 months ago (2014-02-26 21:23:24 UTC) #45
gavinp
This is now based on trunk. I've added mmenke as a TBR for the #include ...
6 years, 10 months ago (2014-02-26 21:35:49 UTC) #46
gavinp
6 years, 9 months ago (2014-03-03 16:39:06 UTC) #47

Powered by Google App Engine
This is Rietveld 408576698