summaryrefslogtreecommitdiff
path: root/base/lazy_instance.cc
diff options
context:
space:
mode:
authorAlex Vakulenko <avakulenko@google.com>2016-01-15 13:02:14 -0800
committerIan Pedowitz <ijpedowitz@google.com>2016-01-20 16:43:08 -0800
commitcce46a0c214b37e8da48c522c83037e8ffa4f9fd (patch)
treefda1edce8588baf15dc32fbc640f8281a65521f6 /base/lazy_instance.cc
parent6b7c08d27852da2b8d52ee88a05e6808370f3f74 (diff)
downloadlibchrome-cce46a0c214b37e8da48c522c83037e8ffa4f9fd.tar.gz
libchrome: Uprev the library to r369476 from Chromium
Pulled the latest and greatest version of libchrome from Chromium. The merge was done against r369476 which corresponds to git commit 0471d0e2e2ef4a544a63481a389e1df33ea7c00a of Jan 14, 2016 Notable changes are: - base::scoped_ptr<T> is now almost identical to std::unique_ptr<T> No Pass() method, now std::move() is used on scoped pointers - basictypes.h is removed and custom int types such as int32 are now replaced with the standard int32_t and similar from <stdint.h> - String utility functions are cleaned up/refactored. Now all are in base:: namespace, many now return values rather than take pointers for results, ambiguous Booleans are replaced with enums, such as: base::StartsWithASCII(current_url, "https://", false); now is: base::StartsWith(current_url, "https://", base::CompareCase::INSENSITIVE_ASCII); - COMPILE_ASSERT() is now replaced with standard static_assert() - Numeric range constants such as kuint64max are removed in favor of standard <limits> constructs such as std::numeric_limits<uint64_t>::max() - base::Value and derived classes use scoped_ptr<> more and support for raw pointers to base::Value is deprecated and/or removed in many places. - base::MessageLoopProxy is completely removed (was marked deprecated before) - base::MessageLoop::Quit() and QuitClosure are renamed to QuitWhenIdle and QuitWhenIdleClosure for more semantic clarity. (cherry picked from commit 0d205d712abd16eeed2f5d5b1052a367d23a223f) Change-Id: I4fb67d80eacd03186868c12c9509189d184e00bd
Diffstat (limited to 'base/lazy_instance.cc')
-rw-r--r--base/lazy_instance.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/base/lazy_instance.cc b/base/lazy_instance.cc
index 594c1fee4f..54680655a2 100644
--- a/base/lazy_instance.cc
+++ b/base/lazy_instance.cc
@@ -6,7 +6,6 @@
#include "base/at_exit.h"
#include "base/atomicops.h"
-#include "base/basictypes.h"
#include "base/threading/platform_thread.h"
namespace base {