libcef: Update due to underlying chromium changes.

- WebKit API changes.
- Use full path for the config.h include to ensure that the correct file is loaded.
- Include features_override.gypi as part of the GYP build command.
- Set the 'resource_include_dirs' value in the 'libcef' GYP target in an attempt to avoid RC1102 internal errors when compiling resources on the build bot.
- Change type of BrowserRequestContext 'cache_path' parameter to FilePath.
- Change in base.gyp project targets.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@58 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2009-10-18 20:39:22 +00:00
parent 2148ca4e88
commit 1bb179d101
15 changed files with 82 additions and 42 deletions

View File

@@ -9,6 +9,8 @@
#include "net/http/http_cache.h"
#include "net/url_request/url_request_context.h"
class FilePath;
// A basic URLRequestContext that only provides an in-memory cookie store.
class BrowserRequestContext : public URLRequestContext {
public:
@@ -17,7 +19,7 @@ class BrowserRequestContext : public URLRequestContext {
// Use an on-disk cache at the specified location. Optionally, use the cache
// in playback or record mode.
BrowserRequestContext(const std::wstring& cache_path,
BrowserRequestContext(const FilePath& cache_path,
net::HttpCache::Mode cache_mode,
bool no_proxy);
@@ -26,7 +28,7 @@ class BrowserRequestContext : public URLRequestContext {
virtual const std::string& GetUserAgent(const GURL& url) const;
private:
void Init(const std::wstring& cache_path, net::HttpCache::Mode cache_mode,
void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode,
bool no_proxy);
};