- Add CefCommandLine::GetArgv method (issue #707).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@751 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-09-04 15:12:50 +00:00
parent 30ecc8a4db
commit c15048d75f
7 changed files with 75 additions and 0 deletions

View File

@ -113,6 +113,13 @@ class CefCommandLine : public virtual CefBase {
/*--cef()--*/
virtual void Reset() =0;
///
// Retrieve the original command line string as a vector of strings.
// The argv array: { program, [(--|-|/)switch[=value]]*, [--], [argument]* }
///
/*--cef()--*/
virtual void GetArgv(std::vector<CefString>& argv) =0;
///
// Constructs and returns the represented command line string. Use this method
// cautiously because quoting behavior is unclear.