diff options
author | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 19:20:46 +0000 |
---|---|---|
committer | sehr@google.com <sehr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 19:20:46 +0000 |
commit | b7e8121b1d32a02d394c9efdbea42e64e9efb1f0 (patch) | |
tree | aefa7840a2665828b211e227ce9618ff1b103014 /ppapi | |
parent | 27ff0aa2b00bb4a029bab6a556c3e30994b82a79 (diff) | |
download | chromium_src-b7e8121b1d32a02d394c9efdbea42e64e9efb1f0.zip chromium_src-b7e8121b1d32a02d394c9efdbea42e64e9efb1f0.tar.gz chromium_src-b7e8121b1d32a02d394c9efdbea42e64e9efb1f0.tar.bz2 |
Add missing #include in ppapi_crash_ppapi_off_main_thread test
(Copy of http://codereview.chromium.org/7740085/ for mcgrathr@google.com)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7828012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99225 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/tests/ppapi_browser/crash/ppapi_crash_ppapi_off_main_thread.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ppapi/native_client/tests/ppapi_browser/crash/ppapi_crash_ppapi_off_main_thread.cc b/ppapi/native_client/tests/ppapi_browser/crash/ppapi_crash_ppapi_off_main_thread.cc index f32b10f..21bda23 100644 --- a/ppapi/native_client/tests/ppapi_browser/crash/ppapi_crash_ppapi_off_main_thread.cc +++ b/ppapi/native_client/tests/ppapi_browser/crash/ppapi_crash_ppapi_off_main_thread.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Native Client 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. // @@ -6,6 +6,8 @@ // trusted side when untrusted code makes unsupported PPAPI calls // on other than the main thread. +#include <pthread.h> + #include "native_client/src/shared/platform/nacl_check.h" #include "native_client/tests/ppapi_test_lib/get_browser_interface.h" #include "native_client/tests/ppapi_test_lib/test_interface.h" |