Update to Chromium revision 62731.

- Introduce BrowserFileWriter implementation.
- ResourceLoaderBridge::ResponseInfo renamed to ResourceResponseInfo.
- StatsTable and SplitString moved to "base" namespace.

Don't use the system proxy resolver on Windows when "Automatically detect settings" is checked under LAN Settings (issue #81).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@116 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2010-10-15 18:37:25 +00:00
parent 383168173a
commit 6db1d580cd
18 changed files with 355 additions and 55 deletions

View File

@@ -10,7 +10,9 @@
#include "cef_thread.h"
class BrowserWebKitInit;
namespace base {
class StatsTable;
}
// ----------------------------------------------------------------------------
// CefProcessUIThread
@@ -31,7 +33,7 @@ class CefProcessUIThread : public CefThread {
virtual void CleanUp();
private:
StatsTable* statstable_;
base::StatsTable* statstable_;
// WebKit implementation class.
BrowserWebKitInit* webkit_init_;