- 10 Mar, 2015 40 commits
-
-
chrome://serviceworker-internalsdominicc authored
BUG=442618 Review URL: https://codereview.chromium.org/998433002 Cr-Commit-Position: refs/heads/master@{#319869}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#319868} -
melandory authored
Adding test for Alexa. Test passes. BUG=369521 R=vabr@chromium.org Review URL: https://codereview.chromium.org/992223002 Cr-Commit-Position: refs/heads/master@{#319867}
-
magjed authored
We can use cricket::VideoFrame::Copy() to make a shallow reference counted copy. Review URL: https://codereview.chromium.org/877283004 Cr-Commit-Position: refs/heads/master@{#319866}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/8fc89ec..ba5c202 TBR=dstockwell@chromium.org Review URL: https://codereview.chromium.org/997503003 Cr-Commit-Position: refs/heads/master@{#319865}
-
vasilii authored
It will simplify ManagePasswordsUIController. The tests are the same as in ManagePasswordsUIControllerTest. BUG=461801 Review URL: https://codereview.chromium.org/993513006 Cr-Commit-Position: refs/heads/master@{#319864}
-
magjed authored
WebRTC 8651:8667 Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/61b3feb..b0ea939 Libjingle 8651:8667 Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/4138f65..1c0ccd7 TBR=tommi,kwiberg@webrtc.org Review URL: https://codereview.chromium.org/998453002 Cr-Commit-Position: refs/heads/master@{#319863}
-
rmcilroy authored
Revert of Remove OneClickSigninHelper since it is no longer used. (patchset #5 id:340001 of https://codereview.chromium.org/914363003/) Reason for revert: Broke the tab_switching.tough_energy_cases benchmark on the perf bots. BUG=465692 Original issue's description: > Remove OneClickSigninHelper since it is no longer used. > > BUG=260022,350202 > > Committed: https://crrev.com/be592667bdf919fb8292c88c1b59767add856ba4 > Cr-Commit-Position: refs/heads/master@{#319662} TBR=noms@chromium.org,asvitkine@chromium.org,sky@chromium.org,rogerta@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=260022,350202 Review URL: https://codereview.chromium.org/998513002 Cr-Commit-Position: refs/heads/master@{#319862}
-
dpolukhin authored
BUG=454505 TEST=manual Review URL: https://codereview.chromium.org/978273002 Cr-Commit-Position: refs/heads/master@{#319861}
-
engedy authored
The new format is not backward compatible with the old one, therefore this CL updates the client side protobuf definitions to be in line with the API definition. However, this CL does not yet make use of any additional fields introduced in the new wire format. BUG=437865 Review URL: https://codereview.chromium.org/996613002 Cr-Commit-Position: refs/heads/master@{#319860}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/ceb9cf3c..17e6b228 Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/992203002 Cr-Commit-Position: refs/heads/master@{#319859}
-
dgozman authored
BUG=459167 Review URL: https://codereview.chromium.org/985073003 Cr-Commit-Position: refs/heads/master@{#319858}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/e60fa38..8fc89ec TBR=dstockwell@chromium.org Review URL: https://codereview.chromium.org/991183002 Cr-Commit-Position: refs/heads/master@{#319857}
-
mnaganov authored
Implement OnReceivedHttpError via NetworkDelegate::OnHeadersReceived for status codes >= 400. BUG=456782 Review URL: https://codereview.chromium.org/976393002 Cr-Commit-Position: refs/heads/master@{#319856}
-
droger authored
This CL move some code from autofill_dialog_common and autofill_dialog_types into the autofill components so that they can be used on iOS. It is only a code move (+git cl format). TBR=sky Review URL: https://codereview.chromium.org/974323002 Cr-Commit-Position: refs/heads/master@{#319855}
-
falken authored
This happens a lot because the update check sees the worker is byte-by-byte identical and then dooms the worker before it finishes starting. BUG=448003 Review URL: https://codereview.chromium.org/995713002 Cr-Commit-Position: refs/heads/master@{#319854}
-
yawano authored
BUG=413541 TEST=manually tested by chaning write_supported in volume_manager.cc to true. Review URL: https://codereview.chromium.org/982283002 Cr-Commit-Position: refs/heads/master@{#319853}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/d64f94e..e60fa38 TBR=dstockwell@chromium.org Review URL: https://codereview.chromium.org/984203004 Cr-Commit-Position: refs/heads/master@{#319852}
-
falken authored
Just a refactoring. It's easier to reason about a single timeout timer than multiple ones. BUG=448003, 372436 Review URL: https://codereview.chromium.org/991743002 Cr-Commit-Position: refs/heads/master@{#319851}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/c465abe..d64f94e TBR=jbroman@chromium.org,dstockwell@chromium.org Review URL: https://codereview.chromium.org/991173002 Cr-Commit-Position: refs/heads/master@{#319850}
-
erikchen authored
Previously, devtools_http created a new tcp connection to Chrome for every request. The large_profile generator makes tens of thousands of requests to Chrome over a very short period of time. A socket used for a TCP connection stays in the TIME_WAIT state for 240s after the connection has been closed. This causes the large_profile generator to exhaust the socket limit on Windows. Reusing the http connection fixes this problem. BUG=464609 Review URL: https://codereview.chromium.org/980073006 Cr-Commit-Position: refs/heads/master@{#319849}
-
amistry authored
BUG=11746 Review URL: https://codereview.chromium.org/917863005 Cr-Commit-Position: refs/heads/master@{#319848}
-
inferno authored
TBR=tsepez@chromium.org,ccameron@chromium.org Review URL: https://codereview.chromium.org/988413005 Cr-Commit-Position: refs/heads/master@{#319847}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#319846} -
hidehiko authored
This CL enables suid sandbox on nacl_helper_nonsfi. BUG=358465 TEST=Ran trybots. Ran Non-SFI NaCl app with nacl_helper_nonsfi. Review URL: https://codereview.chromium.org/888903004 Cr-Commit-Position: refs/heads/master@{#319845}
-
kcarattini authored
BUG=436681 Review URL: https://codereview.chromium.org/988263002 Cr-Commit-Position: refs/heads/master@{#319844}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/167eb17..732a92d CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=mtklein@google.com Review URL: https://codereview.chromium.org/994853002 Cr-Commit-Position: refs/heads/master@{#319843}
-
henryhsu authored
Add GetMaxResolutionForVAConfigID function to get hardware supported maximum resolution for video encode and decode. This is also the preparation of removing --ignore-resolution-limits-for-accelerated-video-decode flag. Because this function uses va_config_id as parameter, we refactor vaapi_wrapper and add LazyInstance to initialize supported profile infos once and reuse it in Initialize and GetSupportedEncodeProfiles functions. BUG=350197 TEST=Test on squawks, and lumpy. Make sure this function works well. Review URL: https://codereview.chromium.org/872623002 Cr-Commit-Position: refs/heads/master@{#319842}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/dc948a2..c465abe TBR=jbroman@chromium.org,dstockwell@chromium.org Review URL: https://codereview.chromium.org/995693003 Cr-Commit-Position: refs/heads/master@{#319841}
-
enne authored
In order to support impl-side painting plus an embedder without a message loop, cc needs a setting to disable raster. Rastering with impl-side painting requires a task runner (and DCHECKs this). This setting notifies cc that there's no need for a tile manager. Thankfully, tile manager is already considered optional in almost all contexts, and so just a few more callsites needed to be cleaned up to fix a few crashes. With this patch, all cc unittests pass with impl-side painting on by default. Review URL: https://codereview.chromium.org/984113004 Cr-Commit-Position: refs/heads/master@{#319840}
-
dcastagna authored
BUG=464373 Review URL: https://codereview.chromium.org/981063003 Cr-Commit-Position: refs/heads/master@{#319839}
-
mbarbella authored
We cannot commit them at this point because we are running on the IO thread. BUG=465586 Review URL: https://codereview.chromium.org/987583005 Cr-Commit-Position: refs/heads/master@{#319838}
-
noel authored
Note: chromium doesn't support v4 profiles at this time. Apply mozilla fix by Benoit Girard, http://bugzil.la/1132468 BUG=458026,458027 Review URL: https://codereview.chromium.org/984333002 Cr-Commit-Position: refs/heads/master@{#319837}
-
kbr authored
BUG=464836 Review URL: https://codereview.chromium.org/997433002 Cr-Commit-Position: refs/heads/master@{#319836}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/95e34ab..dc948a2 TBR=jbroman@chromium.org,dstockwell@chromium.org Review URL: https://codereview.chromium.org/996433004 Cr-Commit-Position: refs/heads/master@{#319835}
-
felt authored
For legacy reasons, extensions can only request quota if there is an infobar service. In practice, this means that extension background pages are excluded. We should keep this same constraint to avoid changing callback behavior with permission bubbles. BUG= Review URL: https://codereview.chromium.org/989363003 Cr-Commit-Position: refs/heads/master@{#319834}
-
fsamuel authored
This CL updates the createGuest API to return an optional contentWindow. This CL renames GuestSizer to GuestProxyHost which better represents what it does. GuestProxyHost exposes "LoadURLWithParams" which, after navigating, creates a swapped out RenderView for the guest in the embedder's process. This CL removes RegisterDestructionCallback from BrowserPluginGuestDelegate. BUG=456118 Test=WebViewTest.NoContentSettingsAPI runs with display:none now. Review URL: https://codereview.chromium.org/910073003 Cr-Commit-Position: refs/heads/master@{#319833}
-
bnc authored
Remove unnecessary net:: qualifiers in spdy_network_transaction_unittest.cc. BUG= Review URL: https://codereview.chromium.org/984573007 Cr-Commit-Position: refs/heads/master@{#319832}
-
tengs authored
Review URL: https://codereview.chromium.org/981723007 Cr-Commit-Position: refs/heads/master@{#319831}
-
dhaddock authored
First attempt at browsers tests. I've added two tests to cover a regression issue that came up recently where clicking the search result in the autocomplete box didn't show all of the results. Pressing enter didn't do anything either. I have refactored drive_specific/autocomplete so I could make use of it. BUG=chromium:440251,chromium:454907 TEST=browser_tests --gtest_filter="*DriveSpecific/FileManagerBrowserTest.Test/{5/6}" Review URL: https://codereview.chromium.org/983983002 Cr-Commit-Position: refs/heads/master@{#319830}
-