Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Side by Side Diff: components/nacl/renderer/plugin/pnacl_translate_thread.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/nacl/renderer/plugin/pnacl_translate_thread.h" 5 #include "components/nacl/renderer/plugin/pnacl_translate_thread.h"
6 6
7 #include <stddef.h>
8
7 #include <iterator> 9 #include <iterator>
8 #include <sstream> 10 #include <sstream>
9 11
10 #include "base/logging.h" 12 #include "base/logging.h"
11 #include "components/nacl/renderer/plugin/plugin.h" 13 #include "components/nacl/renderer/plugin/plugin.h"
12 #include "components/nacl/renderer/plugin/plugin_error.h" 14 #include "components/nacl/renderer/plugin/plugin_error.h"
13 #include "components/nacl/renderer/plugin/srpc_params.h" 15 #include "components/nacl/renderer/plugin/srpc_params.h"
14 #include "components/nacl/renderer/plugin/temporary_file.h" 16 #include "components/nacl/renderer/plugin/temporary_file.h"
15 #include "components/nacl/renderer/plugin/utility.h" 17 #include "components/nacl/renderer/plugin/utility.h"
16 #include "native_client/src/shared/platform/nacl_sync_raii.h" 18 #include "native_client/src/shared/platform/nacl_sync_raii.h"
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 AbortSubprocesses(); 461 AbortSubprocesses();
460 if (translate_thread_ != NULL) 462 if (translate_thread_ != NULL)
461 NaClThreadJoin(translate_thread_.get()); 463 NaClThreadJoin(translate_thread_.get());
462 PLUGIN_PRINTF(("~PnaclTranslateThread joined\n")); 464 PLUGIN_PRINTF(("~PnaclTranslateThread joined\n"));
463 NaClCondVarDtor(&buffer_cond_); 465 NaClCondVarDtor(&buffer_cond_);
464 NaClMutexDtor(&cond_mu_); 466 NaClMutexDtor(&cond_mu_);
465 NaClMutexDtor(&subprocess_mu_); 467 NaClMutexDtor(&subprocess_mu_);
466 } 468 }
467 469
468 } // namespace plugin 470 } // namespace plugin
OLDNEW
« no previous file with comments | « components/nacl/renderer/plugin/pnacl_translate_thread.h ('k') | components/nacl/renderer/plugin/ppapi_entrypoints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698