mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Update due to underlying chromium changes.
- Underlying chromium changes fix Issue #27. - Navigation-related changes to work with WebDataSource. - Cookie-related changes for ResourceLoaderBridge. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@28 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
#include "base/linked_ptr.h"
|
||||
#include "base/ref_counted.h"
|
||||
#include "googleurl/src/gurl.h"
|
||||
#include "webkit/glue/webdatasource.h"
|
||||
#include "webkit/glue/weburlrequest.h"
|
||||
|
||||
namespace net {
|
||||
@@ -23,11 +24,10 @@ class GURL;
|
||||
class CefBrowserImpl;
|
||||
|
||||
// Associated with browser-initated navigations to hold tracking data.
|
||||
class BrowserExtraRequestData : public WebRequest::ExtraData {
|
||||
class BrowserExtraData : public WebDataSource::ExtraData {
|
||||
public:
|
||||
BrowserExtraRequestData(int32 pending_page_id)
|
||||
: WebRequest::ExtraData(),
|
||||
pending_page_id(pending_page_id),
|
||||
BrowserExtraData(int32 pending_page_id)
|
||||
: pending_page_id(pending_page_id),
|
||||
request_committed(false) {
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user