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

Side by Side Diff: sandbox/win/src/interceptors.h

Issue 1856993003: Implement sandbox hooks to forward OPM related GDI system calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed header Created 4 years, 8 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
« no previous file with comments | « sandbox/win/sandbox_win.gypi ('k') | sandbox/win/src/interceptors_64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 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 #ifndef SANDBOX_SRC_INTERCEPTORS_H_ 5 #ifndef SANDBOX_SRC_INTERCEPTORS_H_
6 #define SANDBOX_SRC_INTERCEPTORS_H_ 6 #define SANDBOX_SRC_INTERCEPTORS_H_
7 7
8 #if defined(_WIN64) 8 #if defined(_WIN64)
9 #include "sandbox/win/src/interceptors_64.h" 9 #include "sandbox/win/src/interceptors_64.h"
10 #endif 10 #endif
(...skipping 28 matching lines...) Expand all
39 CREATE_KEY_ID, 39 CREATE_KEY_ID,
40 OPEN_KEY_ID, 40 OPEN_KEY_ID,
41 OPEN_KEY_EX_ID, 41 OPEN_KEY_EX_ID,
42 // Sync dispatcher: 42 // Sync dispatcher:
43 CREATE_EVENT_ID, 43 CREATE_EVENT_ID,
44 OPEN_EVENT_ID, 44 OPEN_EVENT_ID,
45 // Process mitigations Win32k dispatcher: 45 // Process mitigations Win32k dispatcher:
46 GDIINITIALIZE_ID, 46 GDIINITIALIZE_ID,
47 GETSTOCKOBJECT_ID, 47 GETSTOCKOBJECT_ID,
48 REGISTERCLASSW_ID, 48 REGISTERCLASSW_ID,
49 ENUMDISPLAYMONITORS_ID,
50 ENUMDISPLAYDEVICESA_ID,
51 GETMONITORINFOA_ID,
52 GETMONITORINFOW_ID,
53 CREATEOPMPROTECTEDOUTPUTS_ID,
54 GETCERTIFICATE_ID,
55 GETCERTIFICATESIZE_ID,
56 GETCERTIFICATEBYHANDLE_ID,
57 GETCERTIFICATESIZEBYHANDLE_ID,
58 DESTROYOPMPROTECTEDOUTPUT_ID,
59 CONFIGUREOPMPROTECTEDOUTPUT_ID,
60 GETOPMINFORMATION_ID,
61 GETOPMRANDOMNUMBER_ID,
62 GETSUGGESTEDOPMPROTECTEDOUTPUTARRAYSIZE_ID,
63 SETOPMSIGNINGKEYANDSEQUENCENUMBERS_ID,
49 INTERCEPTOR_MAX_ID 64 INTERCEPTOR_MAX_ID
50 }; 65 };
51 66
52 typedef void* OriginalFunctions[INTERCEPTOR_MAX_ID]; 67 typedef void* OriginalFunctions[INTERCEPTOR_MAX_ID];
53 68
54 } // namespace sandbox 69 } // namespace sandbox
55 70
56 #endif // SANDBOX_SRC_INTERCEPTORS_H_ 71 #endif // SANDBOX_SRC_INTERCEPTORS_H_
OLDNEW
« no previous file with comments | « sandbox/win/sandbox_win.gypi ('k') | sandbox/win/src/interceptors_64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698