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

Side by Side Diff: ppapi/proxy/plugin_main_nacl.cc

Issue 10546140: Add untrusted NaCl build for PPAPI proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #include "native_client/src/shared/ppapi_proxy/ppruntime.h"
8
9 // This definition is weak to allow customers to override it when
10 // initialization is needed before the main PPAPI processing happens.
11
12 int __attribute__((weak)) main(int argc, char* argv[]) {
Mark Seaborn 2012/06/13 20:27:37 This file looks roughly like NaCl's src/untrusted/
bbudge 2012/06/14 02:45:10 This was copied from the SRPC proxy library, pprun
13 return PpapiPluginMain();
14 }
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698