libchrome: Uprev the library to r456626 from Chromium

Pulled the latest and greatest version of libchrome from Chromium.

The merge was done against r456626 which corresponds to git commit
08266b3fca707804065a2cfd60331722ade41969 of Mar 14, 2017

Notable changes are:
- FOR_EACH_OBSERVER macro removed (replaced by use of C++ 11
  range-base for loop)
  - base::Values no more FundamentalValue
  - stl_util moved to base namespace
  - some scoped pointers removed in crypto/ in favor
    of BoringSSL UniquePtr.
    - path() accessor renamed to GetPath() in ScopedTempDir (and other
      classes)
      - introduction of base::CallbackOnce

Test: All unit-tests should still pass.
Change-Id: I1e65efb167fa708e35ed7c6492f1cb66a6a46104
Merged-In: I180f9defc7607f462389fae17701fff553c4a2d0
diff --git a/SConstruct b/SConstruct
index 72e022e..49cef6f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -270,7 +270,6 @@
     'name' : 'crypto',
     'sources' : """
                 hmac.cc
-                hmac_nss.cc
                 nss_key_util.cc
                 nss_util.cc
                 openssl_util.cc
@@ -283,9 +282,9 @@
                 secure_hash.cc
                 secure_util.cc
                 sha2.cc
-                signature_creator_nss.cc
-                signature_verifier_nss.cc
-                symmetric_key_nss.cc
+                signature_creator.cc
+                signature_verifier.cc
+                symmetric_key.cc
                 third_party/nss/rsawrapr.c
                 third_party/nss/sha512.cc
                 """,
@@ -309,7 +308,7 @@
                 linux/seccomp-bpf/trap.cc
 
                 linux/seccomp-bpf-helpers/baseline_policy.cc
-                linux/seccomp-bpf-helpers/sigsys_handlers.cc
+    linux/seccomp-bpf-helpers/sigsys_handlers.cc
                 linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc
                 linux/seccomp-bpf-helpers/syscall_sets.cc