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

Side by Side Diff: components/nacl/common/nacl_debug_exception_handler_win.cc

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create a zygote folder Created 7 years, 5 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 "chrome/common/nacl_debug_exception_handler_win.h" 5 #include "components/nacl/common/nacl_debug_exception_handler_win.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/process_util.h" 8 #include "base/process_util.h"
9 #include "base/threading/platform_thread.h" 9 #include "base/threading/platform_thread.h"
10 #include "base/win/scoped_handle.h" 10 #include "base/win/scoped_handle.h"
11 #include "native_client/src/trusted/service_runtime/win/debug_exception_handler. h" 11 #include "native_client/src/trusted/service_runtime/win/debug_exception_handler. h"
12 12
13 namespace { 13 namespace {
14 14
15 class DebugExceptionHandler : public base::PlatformThread::Delegate { 15 class DebugExceptionHandler : public base::PlatformThread::Delegate {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 const base::Callback<void(bool)>& on_connected) { 70 const base::Callback<void(bool)>& on_connected) {
71 // The new PlatformThread will take ownership of the 71 // The new PlatformThread will take ownership of the
72 // DebugExceptionHandler object, which will delete itself on exit. 72 // DebugExceptionHandler object, which will delete itself on exit.
73 DebugExceptionHandler* handler = new DebugExceptionHandler( 73 DebugExceptionHandler* handler = new DebugExceptionHandler(
74 nacl_process, startup_info, message_loop, on_connected); 74 nacl_process, startup_info, message_loop, on_connected);
75 if (!base::PlatformThread::CreateNonJoinable(0, handler)) { 75 if (!base::PlatformThread::CreateNonJoinable(0, handler)) {
76 on_connected.Run(false); 76 on_connected.Run(false);
77 delete handler; 77 delete handler;
78 } 78 }
79 } 79 }
OLDNEW
« no previous file with comments | « components/nacl/common/nacl_debug_exception_handler_win.h ('k') | components/nacl/common/nacl_fork_delegate_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698