diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-19 05:26:16 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-19 05:26:16 +0000 |
commit | 9d123748996441c0aa97b0c8efe39ead8148b0bb (patch) | |
tree | 298397a60bcdb05167b92e764f6c892de488dc31 | |
parent | 0e6444691424c2d052a94e092c9c5f9b8ef71523 (diff) | |
download | chromium_src-9d123748996441c0aa97b0c8efe39ead8148b0bb.zip chromium_src-9d123748996441c0aa97b0c8efe39ead8148b0bb.tar.gz chromium_src-9d123748996441c0aa97b0c8efe39ead8148b0bb.tar.bz2 |
Add string include to fix the build.
TBR=viettrungluu@chromium.org
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10127006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132955 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ppapi/examples/printing/printing.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ppapi/examples/printing/printing.cc b/ppapi/examples/printing/printing.cc index 866e51a..b87fc4f 100644 --- a/ppapi/examples/printing/printing.cc +++ b/ppapi/examples/printing/printing.cc @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include <string.h> + #include "ppapi/cpp/dev/buffer_dev.h" #include "ppapi/cpp/dev/printing_dev.h" #include "ppapi/cpp/image_data.h" |