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

Issue 7002024: Implement QuotaTemporaryStorageEvictor. (Closed)

Created:
9 years, 7 months ago by Dai Mikurube (NOT FULLTIME)
Modified:
9 years, 7 months ago
CC:
tzik
Visibility:
Public.

Description

Implement QuotaTemporaryStorageEvictor. It's based on http://codereview.chromium.org/7029009/. BUG=61676 TEST=QuotaTemporaryStorageEvictorTest.* Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=86597

Patch Set 1 #

Total comments: 9

Patch Set 2 : Fixed. #

Patch Set 3 : Removed unnecessary code. #

Patch Set 4 : Catching up the latest 7003021. #

Total comments: 17

Patch Set 5 : Reflected some comments. #

Patch Set 6 : Re-designed and added a sample test. #

Patch Set 7 : Added a TODO to call OnQuotaManagerDestroyed. #

Total comments: 4

Patch Set 8 : Changed the flow. #

Patch Set 9 : Updated. (Tests have some problems.) #

Patch Set 10 : Added QuotaEvictionHandler and removed functions in QuotaManager. #

Patch Set 11 : Extracted. #

Total comments: 2

Patch Set 12 : Modified to fit http://codereview.chromium.org/7029009/. #

Total comments: 6

Patch Set 13 : Cleaned-up with using Timer. (No clean-up for the unit-test.) #

Total comments: 20

Patch Set 14 : Modified the unit test. #

Patch Set 15 : Reflected the comments. (Not rebased.) #

Patch Set 16 : Rebased. #

Patch Set 17 : Fixed and cleaned-up. #

Total comments: 20

Patch Set 18 : Fixed the test and some nit fix. #

Patch Set 19 : Rebased and nit fix. #

Total comments: 16

Patch Set 20 : Reflected the comments, and added a test for available disk space. #

Patch Set 21 : Reflected the comments. #

Total comments: 18

Patch Set 22 : Reflected the comments, and rebased. #

Total comments: 13

Patch Set 23 : Reflected the comments. #

Total comments: 12

Patch Set 24 : Reflected the comments. #

Total comments: 4

Patch Set 25 : Reflected the comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+468 lines, -3 lines) Patch
M webkit/quota/quota_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -3 lines 0 comments Download
A webkit/quota/quota_temporary_storage_evictor.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 1 chunk +72 lines, -0 lines 0 comments Download
A webkit/quota/quota_temporary_storage_evictor.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 1 chunk +98 lines, -0 lines 0 comments Download
A webkit/quota/quota_temporary_storage_evictor_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 1 chunk +293 lines, -0 lines 0 comments Download
M webkit/quota/webkit_quota.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +2 lines, -0 lines 0 comments Download
M webkit/tools/test_shell/test_shell.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 49 (0 generated)
Dai Mikurube (NOT FULLTIME)
It doesn't compile and work. Uploaded it just to share outline of the design. What ...
9 years, 7 months ago (2011-05-11 06:12:30 UTC) #1
kinuko
http://codereview.chromium.org/7002024/diff/1/webkit/quota/quota_task.cc File webkit/quota/quota_task.cc (right): http://codereview.chromium.org/7002024/diff/1/webkit/quota/quota_task.cc#newcode82 webkit/quota/quota_task.cc:82: this, &QuotaThreadTask::CallRunOnTargetThread), delay_ms_); On the second thought I guess ...
9 years, 7 months ago (2011-05-11 07:49:30 UTC) #2
Dai Mikurube (NOT FULLTIME)
Thanks for the comments. The patch set 2 correctly starts Evict() periodically. (With some dummy ...
9 years, 7 months ago (2011-05-11 11:23:50 UTC) #3
Dai Mikurube (NOT FULLTIME)
Removed unnecessary code. http://codereview.chromium.org/7002024/diff/1/webkit/quota/quota_task.cc File webkit/quota/quota_task.cc (right): http://codereview.chromium.org/7002024/diff/1/webkit/quota/quota_task.cc#newcode82 webkit/quota/quota_task.cc:82: this, &QuotaThreadTask::CallRunOnTargetThread), delay_ms_); On 2011/05/11 11:23:50, ...
9 years, 7 months ago (2011-05-11 11:31:31 UTC) #4
Dai Mikurube (NOT FULLTIME)
Just a comment for myself. http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc#newcode73 webkit/quota/quota_temporary_storage_evictor.cc:73: /* || not quota ...
9 years, 7 months ago (2011-05-11 12:30:21 UTC) #5
kinuko
A few additional iterational comments. http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_manager.cc File webkit/quota/quota_manager.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_manager.cc#newcode476 webkit/quota/quota_manager.cc:476: this, database_.get(), 3000, db_thread_)); ...
9 years, 7 months ago (2011-05-11 12:43:30 UTC) #6
Dai Mikurube (NOT FULLTIME)
Replying just for the last comment: http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc#newcode92 webkit/quota/quota_temporary_storage_evictor.cc:92: MessageLoop::current()->PostTask(FROM_HERE, runnable_factory_. On ...
9 years, 7 months ago (2011-05-11 13:59:22 UTC) #7
Dai Mikurube (NOT FULLTIME)
http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_manager.cc File webkit/quota/quota_manager.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_manager.cc#newcode476 webkit/quota/quota_manager.cc:476: this, database_.get(), 3000, db_thread_)); On 2011/05/11 12:43:30, kinuko wrote: ...
9 years, 7 months ago (2011-05-12 02:45:50 UTC) #8
Dai Mikurube (NOT FULLTIME)
http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc#newcode92 webkit/quota/quota_temporary_storage_evictor.cc:92: MessageLoop::current()->PostTask(FROM_HERE, runnable_factory_. FYI: base/task.h:71-72 says // The factories are ...
9 years, 7 months ago (2011-05-12 04:12:02 UTC) #9
kinuko
http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/2002/webkit/quota/quota_temporary_storage_evictor.cc#newcode92 webkit/quota/quota_temporary_storage_evictor.cc:92: MessageLoop::current()->PostTask(FROM_HERE, runnable_factory_. On 2011/05/12 04:12:02, Dai Mikurube wrote: > ...
9 years, 7 months ago (2011-05-12 05:41:34 UTC) #10
Dai Mikurube (NOT FULLTIME)
Updated for the new design.
9 years, 7 months ago (2011-05-12 13:13:37 UTC) #11
kinuko
(Some cosmetic (doudemoii) comments) http://codereview.chromium.org/7002024/diff/14001/webkit/quota/quota_manager.h File webkit/quota/quota_manager.h (right): http://codereview.chromium.org/7002024/diff/14001/webkit/quota/quota_manager.h#newcode131 webkit/quota/quota_manager.h:131: virtual void DeleteOriginDataOnIOThread( nit: for ...
9 years, 7 months ago (2011-05-13 05:49:04 UTC) #12
Dai Mikurube (NOT FULLTIME)
Changed the code flow. I know that method names are not good for now... (e.g. ...
9 years, 7 months ago (2011-05-13 07:52:40 UTC) #13
Dai Mikurube (NOT FULLTIME)
Added an interface QuotaEvictionHandler and modified QuotaTemporaryStorageEvictor to use it. Removed functions from QuotaManager. (They'll ...
9 years, 7 months ago (2011-05-16 12:48:16 UTC) #14
Dai Mikurube (NOT FULLTIME)
On 2011/05/16 12:48:16, Dai Mikurube wrote: > Added an interface QuotaEvictionHandler and modified > QuotaTemporaryStorageEvictor ...
9 years, 7 months ago (2011-05-16 12:54:02 UTC) #15
michaeln
http://codereview.chromium.org/7002024/diff/20002/webkit/quota/quota_temporary_storage_evictor.h File webkit/quota/quota_temporary_storage_evictor.h (right): http://codereview.chromium.org/7002024/diff/20002/webkit/quota/quota_temporary_storage_evictor.h#newcode25 webkit/quota/quota_temporary_storage_evictor.h:25: QuotaTemporaryStorageEvictorDeleter> { I don't understand why this is refcounted ...
9 years, 7 months ago (2011-05-17 00:19:03 UTC) #16
Dai Mikurube (NOT FULLTIME)
Hi Michael, http://codereview.chromium.org/7002024/diff/20002/webkit/quota/quota_temporary_storage_evictor.h File webkit/quota/quota_temporary_storage_evictor.h (right): http://codereview.chromium.org/7002024/diff/20002/webkit/quota/quota_temporary_storage_evictor.h#newcode25 webkit/quota/quota_temporary_storage_evictor.h:25: QuotaTemporaryStorageEvictorDeleter> { On 2011/05/17 00:19:03, michaeln wrote: ...
9 years, 7 months ago (2011-05-17 05:02:13 UTC) #17
Dai Mikurube (NOT FULLTIME)
On 2011/05/17 05:02:13, Dai Mikurube wrote: > Hi Michael, > > http://codereview.chromium.org/7002024/diff/20002/webkit/quota/quota_temporary_storage_evictor.h > File webkit/quota/quota_temporary_storage_evictor.h ...
9 years, 7 months ago (2011-05-17 05:39:03 UTC) #18
kinuko
On 2011/05/17 05:39:03, Dai Mikurube wrote: > On 2011/05/17 05:02:13, Dai Mikurube wrote: > > ...
9 years, 7 months ago (2011-05-19 02:07:45 UTC) #19
kinuko
I believe this code is largely 'under construction' since I asked you to split several ...
9 years, 7 months ago (2011-05-19 03:04:13 UTC) #20
Dai Mikurube (NOT FULLTIME)
Thank you for earlier comments. I'll try using Timer later. http://codereview.chromium.org/7002024/diff/23001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/23001/webkit/quota/quota_temporary_storage_evictor.cc#newcode36 ...
9 years, 7 months ago (2011-05-19 03:33:36 UTC) #21
Dai Mikurube (NOT FULLTIME)
On 2011/05/19 02:07:45, kinuko wrote: > On 2011/05/17 05:39:03, Dai Mikurube wrote: > > On ...
9 years, 7 months ago (2011-05-19 05:26:26 UTC) #22
Dai Mikurube (NOT FULLTIME)
Cleaned-up the code with using OneShotTimer. It's not RefCounted now.
9 years, 7 months ago (2011-05-19 08:31:16 UTC) #23
kinuko
Thanks, some (next round of) earlier comments. http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc#newcode18 webkit/quota/quota_temporary_storage_evictor.cc:18: : physical_available_space_to_be_evicted(1000 ...
9 years, 7 months ago (2011-05-19 09:27:18 UTC) #24
Dai Mikurube (NOT FULLTIME)
Before reply, I've modified a unit test.
9 years, 7 months ago (2011-05-19 09:39:41 UTC) #25
Dai Mikurube (NOT FULLTIME)
Thanks. http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc#newcode18 webkit/quota/quota_temporary_storage_evictor.cc:18: : physical_available_space_to_be_evicted(1000 * 1000 * 500), On 2011/05/19 ...
9 years, 7 months ago (2011-05-20 02:42:24 UTC) #26
kinuko
getting closer I think http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc#newcode21 webkit/quota/quota_temporary_storage_evictor.cc:21: delay_ms_(delay_ms), On 2011/05/20 02:42:24, Dai ...
9 years, 7 months ago (2011-05-20 06:41:13 UTC) #27
kinuko
http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc#newcode96 webkit/quota/quota_temporary_storage_evictor.cc:96: void QuotaTemporaryStorageEvictor::Start() { On 2011/05/20 02:42:24, Dai Mikurube wrote: ...
9 years, 7 months ago (2011-05-20 06:43:49 UTC) #28
Dai Mikurube (NOT FULLTIME)
Thank you. http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/28001/webkit/quota/quota_temporary_storage_evictor.cc#newcode96 webkit/quota/quota_temporary_storage_evictor.cc:96: void QuotaTemporaryStorageEvictor::Start() { On 2011/05/20 06:43:49, kinuko ...
9 years, 7 months ago (2011-05-20 07:36:54 UTC) #29
Dai Mikurube (NOT FULLTIME)
Some nit fix and rebased. Not ready for the final review. It looks like required ...
9 years, 7 months ago (2011-05-20 08:03:34 UTC) #30
kinuko
(I'll take another look at the new changes/tests later) http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h File webkit/quota/quota_temporary_storage_evictor.h (right): http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h#newcode35 webkit/quota/quota_temporary_storage_evictor.h:35: ...
9 years, 7 months ago (2011-05-20 08:27:02 UTC) #31
Dai Mikurube (NOT FULLTIME)
http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h File webkit/quota/quota_temporary_storage_evictor.h (right): http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h#newcode35 webkit/quota/quota_temporary_storage_evictor.h:35: const int64 kAvailableDiskSpaceToStartEviction; On 2011/05/20 08:27:02, kinuko wrote: > ...
9 years, 7 months ago (2011-05-20 09:33:07 UTC) #32
kinuko
http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h File webkit/quota/quota_temporary_storage_evictor.h (right): http://codereview.chromium.org/7002024/diff/33006/webkit/quota/quota_temporary_storage_evictor.h#newcode35 webkit/quota/quota_temporary_storage_evictor.h:35: const int64 kAvailableDiskSpaceToStartEviction; On 2011/05/20 09:33:07, Dai Mikurube wrote: ...
9 years, 7 months ago (2011-05-20 09:40:33 UTC) #33
kinuko
http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc (right): http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode46 webkit/quota/quota_temporary_storage_evictor_unittest.cc:46: task_for_get_usage_and_quota_->Run(); don't we need to delete the task? http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode86 ...
9 years, 7 months ago (2011-05-23 04:34:53 UTC) #34
Dai Mikurube (NOT FULLTIME)
Thank you for the comments. http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc (right): http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode46 webkit/quota/quota_temporary_storage_evictor_unittest.cc:46: task_for_get_usage_and_quota_->Run(); On 2011/05/23 04:34:53, ...
9 years, 7 months ago (2011-05-23 05:53:37 UTC) #35
kinuko
(Sorry for long comment) http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc (right): http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode86 webkit/quota/quota_temporary_storage_evictor_unittest.cc:86: void AddPseudoOrigin(const GURL& origin, int64 ...
9 years, 7 months ago (2011-05-23 07:29:51 UTC) #36
Dai Mikurube (NOT FULLTIME)
Thank you for the descriptive comments. It's so helpful for me. :) http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc ...
9 years, 7 months ago (2011-05-23 09:50:37 UTC) #37
kinuko
(long comment again, trying to be explicit) http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc (right): http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode86 webkit/quota/quota_temporary_storage_evictor_unittest.cc:86: void AddPseudoOrigin(const ...
9 years, 7 months ago (2011-05-23 12:10:29 UTC) #38
michaeln
http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_manager.h File webkit/quota/quota_manager.h (right): http://codereview.chromium.org/7002024/diff/36009/webkit/quota/quota_manager.h#newcode40 webkit/quota/quota_manager.h:40: virtual ~QuotaEvictionHandler() {} Does this need to be in ...
9 years, 7 months ago (2011-05-23 19:53:47 UTC) #39
Dai Mikurube (NOT FULLTIME)
Replying to Kinuko-san at first. Thank you for the detailed comments. That helped me understanding ...
9 years, 7 months ago (2011-05-24 04:54:33 UTC) #40
Dai Mikurube (NOT FULLTIME)
Thank you for the comments, Michael. http://codereview.chromium.org/7002024/diff/40003/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/40003/webkit/quota/quota_temporary_storage_evictor.cc#newcode32 webkit/quota/quota_temporary_storage_evictor.cc:32: void QuotaTemporaryStorageEvictor::OnEvictionCompleted( On ...
9 years, 7 months ago (2011-05-24 05:59:03 UTC) #41
kinuko
A few more comments... http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor.cc#newcode66 webkit/quota/quota_temporary_storage_evictor.cc:66: // No action required, sleep ...
9 years, 7 months ago (2011-05-24 09:20:53 UTC) #42
Dai Mikurube (NOT FULLTIME)
Thank you. http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor.cc#newcode66 webkit/quota/quota_temporary_storage_evictor.cc:66: // No action required, sleep for a ...
9 years, 7 months ago (2011-05-24 11:30:52 UTC) #43
kinuko
mostly nits http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor_unittest.cc File webkit/quota/quota_temporary_storage_evictor_unittest.cc (right): http://codereview.chromium.org/7002024/diff/46001/webkit/quota/quota_temporary_storage_evictor_unittest.cc#newcode148 webkit/quota/quota_temporary_storage_evictor_unittest.cc:148: quota_eviction_handler()->AccessOrigin(GURL("http://www.c.com")); On 2011/05/24 11:30:52, Dai Mikurube wrote: ...
9 years, 7 months ago (2011-05-24 12:46:48 UTC) #44
Dai Mikurube (NOT FULLTIME)
Thank you for the comments. http://codereview.chromium.org/7002024/diff/44002/webkit/quota/quota_temporary_storage_evictor.cc File webkit/quota/quota_temporary_storage_evictor.cc (right): http://codereview.chromium.org/7002024/diff/44002/webkit/quota/quota_temporary_storage_evictor.cc#newcode70 webkit/quota/quota_temporary_storage_evictor.cc:70: // TODO(dmikurube): Add simple ...
9 years, 7 months ago (2011-05-25 05:26:30 UTC) #45
kinuko
I think it lgtm now. http://codereview.chromium.org/7002024/diff/50001/webkit/quota/quota_manager.h File webkit/quota/quota_manager.h (right): http://codereview.chromium.org/7002024/diff/50001/webkit/quota/quota_manager.h#newcode40 webkit/quota/quota_manager.h:40: virtual ~QuotaEvictionHandler() {} You ...
9 years, 7 months ago (2011-05-25 06:31:38 UTC) #46
Dai Mikurube (NOT FULLTIME)
http://codereview.chromium.org/7002024/diff/50001/webkit/quota/quota_manager.h File webkit/quota/quota_manager.h (right): http://codereview.chromium.org/7002024/diff/50001/webkit/quota/quota_manager.h#newcode40 webkit/quota/quota_manager.h:40: virtual ~QuotaEvictionHandler() {} On 2011/05/25 06:31:38, kinuko wrote: > ...
9 years, 7 months ago (2011-05-25 07:20:37 UTC) #47
Dai Mikurube (NOT FULLTIME)
Checked the "Commit" box. On 2011/05/25 07:20:37, Dai Mikurube wrote: > http://codereview.chromium.org/7002024/diff/50001/webkit/quota/quota_manager.h > File webkit/quota/quota_manager.h ...
9 years, 7 months ago (2011-05-25 09:30:18 UTC) #48
commit-bot: I haz the power
9 years, 7 months ago (2011-05-25 10:33:42 UTC) #49
Change committed as 86597

Powered by Google App Engine
This is Rietveld 408576698