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

Unified Diff: system_logging.h

Issue 2868032: Remove source from crash-reporter and crash-dumper as they are no longer necessary. (Closed) Base URL: ssh://git@chromiumos-git//crash.git
Patch Set: Created 10 years, 6 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
« no previous file with comments | « make_tests.sh ('k') | system_logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: system_logging.h
diff --git a/system_logging.h b/system_logging.h
deleted file mode 100644
index 8c946b01ababc9558bf9a9f2f0e704f0fc2fe931..0000000000000000000000000000000000000000
--- a/system_logging.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2010 The Chromium OS 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 CRASH_SYSTEM_LOGGING_H_
-#define CRASH_SYSTEM_LOGGING_H_
-
-#include <string>
-
-class SystemLogging {
- public:
- virtual void Initialize(const char *ident) = 0;
- virtual void LogInfo(const char *format, ...) = 0;
- virtual void LogWarning(const char *format, ...) = 0;
- virtual void LogError(const char *format, ...) = 0;
-};
-
-class SystemLoggingImpl : public SystemLogging {
- public:
- SystemLoggingImpl();
- virtual ~SystemLoggingImpl();
- virtual void Initialize(const char *ident);
- virtual void LogInfo(const char *format, ...);
- virtual void LogWarning(const char *format, ...);
- virtual void LogError(const char *format, ...);
- private:
- static std::string identity_;
-};
-
-#endif // CRASH_SYSTEM_LOGGING_H_
« no previous file with comments | « make_tests.sh ('k') | system_logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698