mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-19 21:50:42 +01:00
Update to Chromium revision 109626.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@373 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
ccb42a7623
commit
82da0fbb38
@ -17,5 +17,5 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'chromium_url': 'http://src.chromium.org/svn/trunk/src',
|
'chromium_url': 'http://src.chromium.org/svn/trunk/src',
|
||||||
'chromium_revision': '108684',
|
'chromium_revision': '109626',
|
||||||
}
|
}
|
||||||
|
@ -413,7 +413,8 @@ bool BrowserPersistentCookieStore::Backend::LoadCookiesForDomains(
|
|||||||
Time::FromInternalValue(smt.ColumnInt64(8)), // last_access_utc
|
Time::FromInternalValue(smt.ColumnInt64(8)), // last_access_utc
|
||||||
smt.ColumnInt(6) != 0, // secure
|
smt.ColumnInt(6) != 0, // secure
|
||||||
smt.ColumnInt(7) != 0, // httponly
|
smt.ColumnInt(7) != 0, // httponly
|
||||||
true)); // has_expires
|
true, // has_expires
|
||||||
|
true)); // is_persistent
|
||||||
DLOG_IF(WARNING,
|
DLOG_IF(WARNING,
|
||||||
cc->CreationDate() > Time::Now()) << L"CreationDate too recent";
|
cc->CreationDate() > Time::Now()) << L"CreationDate too recent";
|
||||||
cookies.push_back(cc.release());
|
cookies.push_back(cc.release());
|
||||||
|
@ -35,8 +35,8 @@ ui::Clipboard* ClipboardGetClipboard() {
|
|||||||
return clipboard.Pointer();
|
return clipboard.Pointer();
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64 ClipboardGetSequenceNumber() {
|
uint64 ClipboardGetSequenceNumber(ui::Clipboard::Buffer buffer) {
|
||||||
return ClipboardGetClipboard()->GetSequenceNumber();
|
return ClipboardGetClipboard()->GetSequenceNumber(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format,
|
bool ClipboardIsFormatAvailable(const ui::Clipboard::FormatType& format,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user