- Update to Chromium revision 133962.

- Mac: Fix path discovery for non-native frameworks (issue #576).
- Avoid loading Chrome-specific pack files (issue #578).
- Make DevTools remote debugging URLs harder to guess (issue #583)
- Add CefBrowser::GetDevToolsURL() method (issue #583).
- Add DevTools example to cefclient (must run with --remote-debugging-port=XXXX command-line flag) (issue #583).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@608 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2012-04-26 22:20:18 +00:00
parent 7987af5acf
commit 9017c0e74e
21 changed files with 275 additions and 55 deletions

View File

@@ -256,6 +256,13 @@ class CefBrowserHost : public virtual CefBase {
///
/*--cef()--*/
virtual CefRefPtr<CefClient> GetClient() =0;
///
// Returns the remote debugging DevTools URL for this browser. If remote
// debugging is disabled this method will return an empty string.
///
/*--cef()--*/
virtual CefString GetDevToolsURL() =0;
};
#endif // CEF_INCLUDE_CEF_BROWSER_H_