Advertisement
Gov_777

флеш для хромиума

Apr 25th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.53 KB | None | 0 0
  1. procedure OnbeforeCmdLine(const processType: ustring; const commandLine: ICefCommandLine);
  2. begin
  3. //commandLine.AppendSwitch('single-process');
  4. commandLine.AppendSwitch('allow-outdated-plugins');
  5. commandLine.AppendSwitchWithValue('ppapi-flash-path', Format('%spepflashplayer.dll', [ExtractFilePath
  6. (ParamStr(0))]));
  7. commandLine.AppendSwitchWithValue('ppapi-flash-version', '24.0.0.221');
  8. end;
  9.  
  10.  
  11. initialization
  12. CefSingleProcess := True;
  13. CefPersistSessionCookies := True;
  14. CefOnBeforeCommandLineProcessing := OnbeforeCmdLine;
  15. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement