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

Side by Side Diff: chrome/nacl/nacl_exe_win_64.cc

Issue 7863024: Make the NaCl windows 64 bit binaries not depend on chrome targets. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove nacl_win64 and dummy hacks Created 9 years, 3 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 | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/at_exit.h"
6 #include "base/command_line.h"
7 #include "base/scoped_ptr.h"
8 #include "chrome/app/client_util.h"
9 #include "content/app/sandbox_helper_win.h"
10 #include "sandbox/src/sandbox_types.h"
11
12 int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t*, int) {
Brad Chen (chromium) 2011/09/11 17:35:37 For my edification, what does the w before WinMain
jam 2011/09/11 22:51:37 This is the entry point that Windows looks for. Th
13 sandbox::SandboxInterfaceInfo sandbox_info = {0};
14 content::InitializeSandboxInfo(&sandbox_info);
15
16 base::AtExitManager exit_manager;
17 CommandLine::Init(0, NULL);
18
19 scoped_ptr<MainDllLoader> loader(MakeMainDllLoader());
20 return loader->Launch(instance, &sandbox_info);
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698