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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: components/cert_database/public/linux/cert_database_service_io_part_linux.h
diff --git a/components/cert_database/public/linux/cert_database_service_io_part_linux.h b/components/cert_database/public/linux/cert_database_service_io_part_linux.h
new file mode 100644
index 0000000000000000000000000000000000000000..44390f2682991dc8aadf0ee3fe39c30da76db98b
--- /dev/null
+++ b/components/cert_database/public/linux/cert_database_service_io_part_linux.h
@@ -0,0 +1,31 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_LINUX_H_
+#define COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_LINUX_H_
+
+#include <string>
Joao da Silva 2014/10/30 09:48:01 used?
pneubeck (no reviews) 2014/11/05 14:53:37 Done.
+
+#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.
+#include "base/macros.h"
+#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.
+#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.
+#include "components/cert_database/public/cert_database_service_io_part.h"
+
+namespace cert_database {
+
+class CertDatabaseServiceIOPartLinux : public CertDatabaseServiceIOPart {
+ public:
+ CertDatabaseServiceIOPartLinux();
+ ~CertDatabaseServiceIOPartLinux() override;
+
+ void Init() override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(CertDatabaseServiceIOPartLinux);
+};
+
+} // namespace cert_database
+
+#endif // COMPONENTS_CERT_DATABASE_PUBLIC_LINUX_CERT_DATABASE_SERVICE_IO_PART_LINUX_H_

Powered by Google App Engine
This is Rietveld 408576698