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

Side by Side Diff: sandbox/win/src/sandbox_globals.cc

Issue 84063004: Restructure sandbox code to reduce dependencies pulled in by intercept code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cpu@ comments Created 7 years 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
OLDNEW
(Empty)
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
rvargas (doing something else) 2013/12/02 20:05:33 nit: new style: no (c) (I believe) and 2013 :)
robertshield 2013/12/03 18:53:51 Done.
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 <windows.h>
6
7 #include "sandbox/win/src/sandbox_nt_types.h"
8 #include "sandbox/win/src/sandbox_types.h"
9
10 namespace sandbox {
11
12 // The section for IPC and policy.
13 SANDBOX_INTERCEPT HANDLE g_shared_section = NULL;
14
15 // This is the list of all imported symbols from ntdll.dll.
16 SANDBOX_INTERCEPT NtExports g_nt = { NULL };
rvargas (doing something else) 2013/12/02 20:05:33 nit: use {}
robertshield 2013/12/03 18:53:51 Done.
17
18 } // namespace sandbox
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698