summaryrefslogtreecommitdiff
path: root/chromium/ppapi/shared_impl/id_assignment.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ppapi/shared_impl/id_assignment.h')
-rw-r--r--chromium/ppapi/shared_impl/id_assignment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/ppapi/shared_impl/id_assignment.h b/chromium/ppapi/shared_impl/id_assignment.h
index 3bacac3829f..039e7fed4ca 100644
--- a/chromium/ppapi/shared_impl/id_assignment.h
+++ b/chromium/ppapi/shared_impl/id_assignment.h
@@ -26,7 +26,7 @@ PPAPI_SHARED_EXPORT extern const unsigned int kPPIdTypeBits;
extern const int32 kMaxPPId;
-// The least significant bits are the type, the rest are the value.
+// The most significant bits are the type, the rest are the value.
template <typename T> inline T MakeTypedId(T value, PPIdType type) {
return (value << kPPIdTypeBits) | static_cast<T>(type);
}