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

Side by Side Diff: components/cert_database/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: Flattened components/cert_database folders. 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 "base/macros.h"
9 #include "components/cert_database/cert_database_service_io_part.h"
10
11 namespace cert_database {
12
13 class CertDatabaseServiceIOPartLinux : public CertDatabaseServiceIOPart {
14 public:
15 CertDatabaseServiceIOPartLinux();
16 ~CertDatabaseServiceIOPartLinux() override;
17
18 void Init() override;
19
20 private:
21 DISALLOW_COPY_AND_ASSIGN(CertDatabaseServiceIOPartLinux);
22 };
23
24 } // namespace cert_database
25
26 #endif // COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_L INUX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698