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

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: Rebase, format. Created 6 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 | 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>
9
10 #include "base/files/file_path.h"
11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/sequenced_task_runner.h"
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
22 virtual ~CertDatabaseServiceIOPartLinux();
23
24 virtual void Init() override;
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(CertDatabaseServiceIOPartLinux);
28 };
29
30 } // namespace cert_database
31
32 #endif // COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_L INUX_h_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698