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

Side by Side Diff: webkit/quota/quota_temporary_storage_evictor.h

Issue 7002024: Implement QuotaTemporaryStorageEvictor. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed and cleaned-up. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_QUOTA_QUOTA_TEMPORARY_STORAGE_EVICTOR_H_
6 #define WEBKIT_QUOTA_QUOTA_TEMPORARY_STORAGE_EVICTOR_H_
7 #pragma once
8
9 #include "base/message_loop_proxy.h"
10 #include "base/memory/scoped_callback_factory.h"
11 #include "base/timer.h"
12 #include "webkit/quota/quota_manager.h"
13 #include "webkit/quota/quota_types.h"
14
15 class GURL;
16
17 namespace quota {
18
19 class QuotaTemporaryStorageEvictor {
20 public:
21 QuotaTemporaryStorageEvictor(
22 QuotaEvictionHandler* quota_eviction_handler,
23 int64 interval_ms,
24 scoped_refptr<base::MessageLoopProxy> io_thread);
25 virtual ~QuotaTemporaryStorageEvictor();
26
27 void Start();
28
29 bool repeated_eviction() const { return repeated_eviction_; }
30 void set_repeated_eviction(bool repeated_eviction) {
31 repeated_eviction_ = repeated_eviction;
32 }
33
34 static const double kUsageRatioToStartEviction;
35 const int64 kAvailableDiskSpaceToStartEviction;
kinuko 2011/05/20 06:41:14 This is not static since you imagine we may give d
Dai Mikurube (NOT FULLTIME) 2011/05/20 07:36:54 Hmm, I guess I did two mistakes : 1. I read your p
kinuko 2011/05/20 08:27:02 Yeah the detailed rule is hidden in the expandable
Dai Mikurube (NOT FULLTIME) 2011/05/20 09:33:07 Ah, make sense. It was just a temporary value to
kinuko 2011/05/20 09:40:33 Will try!
36
37 private:
38 friend struct QuotaTemporaryStorageEvictorDeleter;
39 friend class QuotaTemporaryStorageEvictorTest;
40
41 void MayStartEviction(int interval_ms);
42 void GetUsageAndQuotaThenEvict();
43 void EvictIfRequired(
44 QuotaStatusCode status,
45 int64 usage,
46 int64 quota,
47 int64 physical_available_space);
48 void DoEvict(const GURL& origin);
49 void OnEvictionCompleted(QuotaStatusCode status);
50
51 QuotaEvictionHandler* quota_eviction_handler_;
kinuko 2011/05/20 06:41:14 Can we add a comment like "Not owned; eviction_han
Dai Mikurube (NOT FULLTIME) 2011/05/20 07:36:54 Done.
52
53 int64 interval_ms_;
54 bool repeated_eviction_;
55 scoped_refptr<base::MessageLoopProxy> io_thread_;
56
57 base::OneShotTimer<QuotaTemporaryStorageEvictor> timer_;
58
59 base::ScopedCallbackFactory<QuotaTemporaryStorageEvictor> callback_factory_;
60
61 DISALLOW_COPY_AND_ASSIGN(QuotaTemporaryStorageEvictor);
62 };
63
64 } // namespace quota
65
66 #endif // WEBKIT_QUOTA_QUOTA_TEMPORARY_STORAGE_EVICTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698