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

Unified Diff: base/build_time.h

Issue 8510027: base: export GetBuildTime (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
Index: base/build_time.h
diff --git a/base/build_time.h b/base/build_time.h
new file mode 100644
index 0000000000000000000000000000000000000000..6d413bc4dfc51fdac34651861aad04ec174b0440
--- /dev/null
+++ b/base/build_time.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2011 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 BASE_BUILD_TIME_
+#define BASE_BUILD_TIME_
+#pragma once
+
+#include "base/base_export.h"
+#include "base/time.h"
+
+namespace base {
+
+// GetBuildTime returns the time at which the current binary was built.
+//
+// This uses the __DATE__ and __TIME__ macros, which don't trigger a rebuild
+// when they change. However, official builds will always be rebuilt from
+// scratch.
+//
+// Also, since __TIME__ doesn't include a timezone, this value should only be
jar (doing other things) 2011/11/09 22:51:31 suggestion: Append a timezone, so that the result
agl 2011/11/10 19:02:58 Done.
+// considered accurate to a day.
+Time BASE_EXPORT GetBuildTime();
+
+} // namespace base
+
+#endif // BASE_BUILD_TIME_
« no previous file with comments | « base/base.gypi ('k') | base/build_time.cc » ('j') | base/build_time_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698