Update the README to mention that a C API is also available.

Review URL: http://codereview.chromium.org/2819008
diff --git a/metrics/README b/metrics/README
index 6fec766..4219379 100644
--- a/metrics/README
+++ b/metrics/README
@@ -11,10 +11,10 @@
 The Metrics Library: libmetrics
 ================================================================================
 
-libmetrics is a small library that implements the basic C++ API for
-metrics collection. All metrics collection is funneled through this
-library. The easiest and recommended way for a client-side module to
-collect user metrics is to link libmetrics and use its APIs to send
+libmetrics is a small library that implements the basic C and C++ API
+for metrics collection. All metrics collection is funneled through
+this library. The easiest and recommended way for a client-side module
+to collect user metrics is to link libmetrics and use its APIs to send
 metrics to Chrome for transport to UMA. In order to use the library in
 a module, you need to do the following:
 
@@ -47,6 +47,8 @@
   complete API documentation in metrics_library.h under
   src/platform/metrics/.
 
+  For more information on the C API see c_metrics_library.h.
+
 - On the target platform, shortly after the sample is sent it should
   be visible in Chrome through "about:histograms".
 
@@ -59,7 +61,6 @@
 
 Logging.CrashCounter
 Network.TimeToDrop
-Platform.BootTime
 
 
 ================================================================================