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

Side by Side Diff: components/cert_database/public/linux/cert_database_service_io_part_linux.h

Issue 419013003: Replace c/b/nss_context by a KeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separated out ClientCertStoreChromeOS change. Created 6 years, 1 month 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 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 COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_LINU X_H_
6 #define COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_LINU X_H_
7
8 #include <string>
Joao da Silva 2014/10/30 09:48:01 used?
pneubeck (no reviews) 2014/11/05 14:53:37 Done.
9
10 #include "base/files/file_path.h"
Joao da Silva 2014/10/30 09:48:01 used?
pneubeck (no reviews) 2014/11/05 14:53:37 Done.
11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h"
Joao da Silva 2014/10/30 09:48:01 used?
pneubeck (no reviews) 2014/11/05 14:53:37 Done.
13 #include "base/sequenced_task_runner.h"
Joao da Silva 2014/10/30 09:48:02 used?
pneubeck (no reviews) 2014/11/05 14:53:37 Done.
14 #include "components/cert_database/public/cert_database_service_io_part.h"
15
16 namespace cert_database {
17
18 class CertDatabaseServiceIOPartLinux : public CertDatabaseServiceIOPart {
19 public:
20 CertDatabaseServiceIOPartLinux();
21 ~CertDatabaseServiceIOPartLinux() override;
22
23 void Init() override;
24
25 private:
26 DISALLOW_COPY_AND_ASSIGN(CertDatabaseServiceIOPartLinux);
27 };
28
29 } // namespace cert_database
30
31 #endif // COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_L INUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698