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

Side by Side Diff: content/browser/net/quota_policy_channel_id_store.h

Issue 381073002: Move sqlite_channel_id_store from chrome/browser/net to net/extras. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments. Created 6 years, 4 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
OLDNEW
(Empty)
1 // Copyright (c) 2014 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 CONTENT_BROWSER_NET_QUOTA_POLICY_CHANNEL_ID_STORE_H_
6 #define CONTENT_BROWSER_NET_QUOTA_POLICY_CHANNEL_ID_STORE_H_
7
8 #include "base/callback_forward.h"
9 #include "base/compiler_specific.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/scoped_vector.h"
13 #include "content/common/content_export.h"
14 #include "net/ssl/default_channel_id_store.h"
15
16 namespace base {
17 class FilePath;
18 class SequencedTaskRunner;
19 }
20
21 namespace quota {
22 class SpecialStoragePolicy;
23 }
24
25 namespace content {
26
27 // Persistent ChannelID Store that takes into account SpecialStoragePolicy and
28 // removes ChannelIDs that are StorageSessionOnly when store is closed.
29 class CONTENT_EXPORT QuotaPolicyChannelIDStore
30 : public net::DefaultChannelIDStore::PersistentStore {
31 public:
32 // Create or open persistent store in file |path|. All I/O tasks are performed
33 // in background using |background_task_runner|. If provided, a
34 // |special_storage_policy| is consulted when the store is closed to decide
35 // which certificates to keep.
36 QuotaPolicyChannelIDStore(
37 const base::FilePath& path,
38 const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
39 quota::SpecialStoragePolicy* special_storage_policy);
40
41 // net::DefaultChannelIDStore::PersistentStore:
42 virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE;
43 virtual void AddChannelID(
44 const net::DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
45 virtual void DeleteChannelID(
46 const net::DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
47 virtual void SetForceKeepSessionState() OVERRIDE;
48
49 private:
50 virtual ~QuotaPolicyChannelIDStore();
51
52 // True if everything should go to persistent store.
53 bool force_keep_session_state_;
54 const base::FilePath& path_;
55 scoped_refptr<base::SequencedTaskRunner> background_task_runner_;
56 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
57 scoped_refptr<net::DefaultChannelIDStore::PersistentStore> persistent_store_;
58
59 DISALLOW_COPY_AND_ASSIGN(QuotaPolicyChannelIDStore);
60 };
61
62 } // namespace content
63
64 #endif // CONTENT_BROWSER_NET_QUOTA_POLICY_CHANNEL_ID_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698