diff options
author | mdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-16 01:22:46 +0000 |
---|---|---|
committer | mdm@chromium.org <mdm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-16 01:22:46 +0000 |
commit | d43f86e2746a383637c2e35f4f6be054c029816a (patch) | |
tree | 9860b6743ec71ccb8181ce2feee0cfdc7c9541a9 /ppapi/cpp | |
parent | a42fd4efd59f80dbfab1bc21128c993d7d15cbf8 (diff) | |
download | chromium_src-d43f86e2746a383637c2e35f4f6be054c029816a.zip chromium_src-d43f86e2746a383637c2e35f4f6be054c029816a.tar.gz chromium_src-d43f86e2746a383637c2e35f4f6be054c029816a.tar.bz2 |
Add some missing header files and fix a template parameter to fix compiler warnings.
Review URL: http://codereview.chromium.org/7027004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85451 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp')
-rw-r--r-- | ppapi/cpp/paint_aggregator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/cpp/paint_aggregator.h b/ppapi/cpp/paint_aggregator.h index 3fe32a5..dd994c1 100644 --- a/ppapi/cpp/paint_aggregator.h +++ b/ppapi/cpp/paint_aggregator.h @@ -1,10 +1,11 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_CPP_PAINT_AGGREGATOR_H_ #define PPAPI_CPP_PAINT_AGGREGATOR_H_ +#include <stddef.h> #include <vector> #include "ppapi/cpp/point.h" |