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

Unified Diff: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h

Issue 954643002: Update mojo sdk to rev 3d23dae011859a2aae49f1d1adde705c8e85d819 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use run_renderer_in_process() Created 5 years, 10 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
Index: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h
index 8afc18c160a1e6a510694c828f768e5048ef574d..84f927c9918144fcd2c8bbca02874d94ab31b026 100644
--- a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h
@@ -21,7 +21,7 @@ template <typename Key, typename Value>
struct MapTraits<Key, Value, false> {
// Map keys can't be move only types.
static_assert(!internal::IsMoveOnlyType<Key>::value,
- "Map keys can not be move only types.");
+ "Map keys cannot be move only types.");
typedef Key KeyStorageType;
typedef Key& KeyRefType;
@@ -111,7 +111,7 @@ template <typename Key, typename Value>
struct MapTraits<Key, Value, true> {
// Map keys can't be move only types.
static_assert(!internal::IsMoveOnlyType<Key>::value,
- "Map keys can not be move only types.");
+ "Map keys cannot be move only types.");
typedef Key KeyStorageType;
typedef Key& KeyRefType;

Powered by Google App Engine
This is Rietveld 408576698