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

Side by Side Diff: components/cookie_config/cookie_store_util.cc

Issue 1405463006: Componentize CookieOSCryptoDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/net/cookie_store_util.h" 5 #include "components/cookie_config/cookie_store_util.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "chrome/browser/browser_process.h"
9 #include "chrome/common/chrome_constants.h"
10 #include "chrome/common/chrome_switches.h"
11 #include "components/os_crypt/os_crypt.h" 8 #include "components/os_crypt/os_crypt.h"
12 #include "content/public/common/content_constants.h"
13 #include "extensions/common/constants.h" 9 #include "extensions/common/constants.h"
droger 2015/10/14 16:04:39 Delete this include.
Abhishek 2015/10/15 08:46:04 Done.
14 #include "net/extras/sqlite/cookie_crypto_delegate.h" 10 #include "net/extras/sqlite/cookie_crypto_delegate.h"
15 11
16 namespace chrome_browser_net { 12 namespace cookie_config {
17 13
18 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) 14 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
19 namespace { 15 namespace {
20 16
21 // Use the operating system's mechanisms to encrypt cookies before writing 17 // Use the operating system's mechanisms to encrypt cookies before writing
22 // them to persistent store. Currently this only is done with desktop OS's 18 // them to persistent store. Currently this only is done with desktop OS's
23 // because ChromeOS and Android already protect the entire profile contents. 19 // because ChromeOS and Android already protect the entire profile contents.
24 class CookieOSCryptoDelegate : public net::CookieCryptoDelegate { 20 class CookieOSCryptoDelegate : public net::CookieCryptoDelegate {
25 public: 21 public:
26 bool ShouldEncrypt() override; 22 bool ShouldEncrypt() override;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 // Using a LazyInstance is safe here because this class is stateless and 56 // Using a LazyInstance is safe here because this class is stateless and
61 // requires 0 initialization. 57 // requires 0 initialization.
62 base::LazyInstance<CookieOSCryptoDelegate> g_cookie_crypto_delegate = 58 base::LazyInstance<CookieOSCryptoDelegate> g_cookie_crypto_delegate =
63 LAZY_INSTANCE_INITIALIZER; 59 LAZY_INSTANCE_INITIALIZER;
64 60
65 } // namespace 61 } // namespace
66 62
67 net::CookieCryptoDelegate* GetCookieCryptoDelegate() { 63 net::CookieCryptoDelegate* GetCookieCryptoDelegate() {
68 return g_cookie_crypto_delegate.Pointer(); 64 return g_cookie_crypto_delegate.Pointer();
69 } 65 }
70 #else // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) 66 #else // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
71 net::CookieCryptoDelegate* GetCookieCryptoDelegate() { 67 net::CookieCryptoDelegate* GetCookieCryptoDelegate() {
72 return NULL; 68 return NULL;
73 } 69 }
74 #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) 70 #endif // defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
75 71
76 } // namespace chrome_browser_net 72 } // namespace cookie_config
OLDNEW
« components/cookie_config/cookie_store_util.h ('K') | « components/cookie_config/cookie_store_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698