forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.pyx
More file actions
14 lines (13 loc) · 602 Bytes
/
app.pyx
File metadata and controls
14 lines (13 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) 2012-2014 The CEF Python authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
cdef public void App_OnBeforeCommandLineProcessing_BrowserProcess(
CefRefPtr[CefCommandLine] cefCommandLine
) except * with gil:
global g_commandLineSwitches
try:
AppendSwitchesToCommandLine(cefCommandLine, g_commandLineSwitches)
Debug("App_OnBeforeCommandLineProcessing_BrowserProcess()")
except:
(exc_type, exc_value, exc_trace) = sys.exc_info()
sys.excepthook(exc_type, exc_value, exc_trace)