summaryrefslogtreecommitdiff
path: root/chromium/ppapi/cpp/var.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-01-25 11:39:07 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-01-25 15:20:42 +0000
commit6c91641271e536ffaa88a1dff5127e42ee99a91e (patch)
tree703d9dd49602377ddc90cbf886aad37913f2496b /chromium/ppapi/cpp/var.h
parentb145b7fafd36f0c260d6a768c81fc14e32578099 (diff)
downloadqtwebengine-chromium-6c91641271e536ffaa88a1dff5127e42ee99a91e.tar.gz
BASELINE: Update Chromium to 49.0.2623.23
Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'chromium/ppapi/cpp/var.h')
-rw-r--r--chromium/ppapi/cpp/var.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/ppapi/cpp/var.h b/chromium/ppapi/cpp/var.h
index a79f3c4f3e2..1b2435606a2 100644
--- a/chromium/ppapi/cpp/var.h
+++ b/chromium/ppapi/cpp/var.h
@@ -5,6 +5,8 @@
#ifndef PPAPI_CPP_VAR_H_
#define PPAPI_CPP_VAR_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -164,7 +166,7 @@ class Var {
/// This function determines if this <code>Var</code> is a number.
///
- /// @return true if this <code>Var</code> is an int32 or double number,
+ /// @return true if this <code>Var</code> is an int32_t or double number,
/// otherwise false.
bool is_number() const {
return var_.type == PP_VARTYPE_INT32 ||