Update to Chromium revision 160122.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@844 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
163cc7d9cc
commit
167c601f29
|
@ -17,5 +17,5 @@
|
|||
|
||||
{
|
||||
'chromium_url': 'http://src.chromium.org/svn/trunk/src',
|
||||
'chromium_revision': '157509',
|
||||
'chromium_revision': '160122',
|
||||
}
|
||||
|
|
|
@ -295,7 +295,7 @@ void CefBrowserImpl::GetFrameNames(std::vector<CefString>& names) {
|
|||
WebFrame* it = main_frame;
|
||||
do {
|
||||
if (it != main_frame) {
|
||||
string16 str = it->name();
|
||||
string16 str = it->uniqueName();
|
||||
names.push_back(str);
|
||||
}
|
||||
it = it->traverseNext(true);
|
||||
|
@ -688,7 +688,7 @@ CefRefPtr<CefFrame> CefBrowserImpl::UIT_GetCefFrame(WebFrame* frame) {
|
|||
cef_frame = GetMainCefFrame(frame->identifier(), url);
|
||||
} else {
|
||||
// Locate or create the appropriate reference.
|
||||
CefString name = string16(frame->name());
|
||||
CefString name = string16(frame->uniqueName());
|
||||
DCHECK(!name.empty());
|
||||
cef_frame = GetOrCreateCefFrame(frame->identifier(), name, url);
|
||||
}
|
||||
|
|
|
@ -42,7 +42,6 @@ BrowserWebKitInit::BrowserWebKitInit()
|
|||
WebKit::WebRuntimeFeatures::enableSockets(true);
|
||||
WebKit::WebRuntimeFeatures::enableApplicationCache(true);
|
||||
WebKit::WebRuntimeFeatures::enableDatabase(true);
|
||||
WebKit::WebRuntimeFeatures::enablePushState(true);
|
||||
WebKit::WebRuntimeFeatures::enableIndexedDatabase(true);
|
||||
WebKit::WebRuntimeFeatures::enableFileSystem(true);
|
||||
WebKit::WebRuntimeFeatures::enableGeolocation(true);
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Index: pylib/gyp/input.py
|
||||
===================================================================
|
||||
--- pylib/gyp/input.py (revision 1501)
|
||||
--- pylib/gyp/input.py (revision 1508)
|
||||
+++ pylib/gyp/input.py (working copy)
|
||||
@@ -685,7 +685,8 @@
|
||||
@@ -824,7 +824,8 @@
|
||||
# that don't load quickly, this can be faster than
|
||||
# <!(python modulename param eters). Do this in |build_file_dir|.
|
||||
oldwd = os.getcwd() # Python doesn't like os.open('.'): no fchdir.
|
||||
|
|
Loading…
Reference in New Issue