~oxide-developers/oxide/+git/chromium:oxide/dev/cr2859

Last commit made on 2016-10-04
Get this branch:
git clone -b oxide/dev/cr2859 https://git.launchpad.net/~oxide-developers/oxide/+git/chromium
Members of Oxide Developers can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
oxide/dev/cr2859
Repository:
lp:~oxide-developers/oxide/+git/chromium

Recent commits

9279cef... by Chris Coulson

Provide the ability for an embedder to override the hung renderer timeout

529b15d... by Chris Coulson

Export DevToolsHttpHandler from content as it's currently used by Oxide

4846ab9... by Chris Coulson

Merge upstream 3f63c614e8c4501b1bfa3f608e32a9d12618b0a0 in to master

9a607d5... by Chris Coulson

Whitelist //tools/gn/BUILD.gn for exec_script

3f63c61... by dfalcantara <email address hidden>

[Download Home] Properly enqueue download requests

Trying to shoehorn pending actions into the PendingDownloadActions queue
doesn't work unless you use a unique download ID. Just store a separate
int that tracks what downloads have been requested.

BUG=645926

Review-Url: https://codereview.chromium.org/2332213002
Cr-Commit-Position: refs/heads/master@{#418117}

a5600d2... by esprehn <email address hidden>

Move String::remove to StringImpl.

String should be a thin wrapper over StringImpl and other functions.

I also simplified the implementation if remove() to leverage StringBuffer and
copyChars.

Review-Url: https://codereview.chromium.org/2333933002
Cr-Commit-Position: refs/heads/master@{#418116}

6356088... by esprehn <email address hidden>

Move String::isSafeToSendToAnotherThread to StringImpl.

String should be a thin wrapper over StringImpl and other functions.

I also added isSafeToSendToAnotherThread() to AtomicString since this method is
useful there too.

Review-Url: https://codereview.chromium.org/2335573003
Cr-Commit-Position: refs/heads/master@{#418115}

8526444... by xlai <email address hidden>

Disallow users modify canvas after it transfers control to offscreen

After a canvas has transferred its control to Offscreen, we should not allow
users to perform resizing, toDataURL, toBlob and getContext.

BUG=563852

Review-Url: https://codereview.chromium.org/2323933004
Cr-Commit-Position: refs/heads/master@{#418114}

de9e248... by dgozman <email address hidden>

[DevTools] Remove TreeOutline from IDBDatabaseView.

It's completely unnecessary there.

BUG=none

Review-Url: https://codereview.chromium.org/2335783002
Cr-Commit-Position: refs/heads/master@{#418113}

2a251cd... by jam <email address hidden>

Fix SSLUITest.TestGoodFrameNavigation with PlzNavigate.

The problem was that this test was checking that it got the notification that insecure content was run. Without PlzNavigate, this notification was sent from the renderer before it starts loading the url (http://example.test/...). The content never actually loaded, because browser tests have a resolver that block all network requests to the outside world in order to avoid flaky tests which make network requests. With PlzNavigate, the request was being cancelled in the browser process and the renderer never got as far to be told that insecure content was run.

The fix is to just the browser test to treat example.test as a local host. A small side effect is that it now also loads the image in that page, so we need to tweak the test to reflect that the page both loads and displays insecure content.

BUG=504347

Review-Url: https://codereview.chromium.org/2337793002
Cr-Commit-Position: refs/heads/master@{#418112}