- 29 Aug, 2014 16 commits
-
-
dtu authored
unittest produces a suite._ErrorHolder object in these cases. We can parse its description to figure out what class/module it is and what tests we have in that class/module. BUG=405766 TEST=Make a TestCase fail setUpClass, run it with --retry-limit=3 and check for retries. R=dpranke, tonyg Review URL: https://codereview.chromium.org/515263003 Cr-Commit-Position: refs/heads/master@{#292524}
-
lanwei authored
BUG=366603 Review URL: https://codereview.chromium.org/469523003 Cr-Commit-Position: refs/heads/master@{#292523}
-
jvoung authored
Revert of Set RequestContextObject for PNaCl pexe fetches, to fix On-Demand update. (patchset #5 of https://codereview.chromium.org/471233003/) Reason for revert: Test is failing on a Blink bot on ChromeOS Original issue's description: > Set RequestContextObject for PNaCl pexe fetches, to fix On-Demand update. > > Add more checks to test to detect that the resource type of > the URL request is indeed OBJECT. > Would like to get this merged to the M38 branch. > > BUG=401755 > > Committed: https://chromium.googlesource.com/chromium/src/+/bfc3e122d6721ccc93f0f8b19dac4a3c2a0c947d TBR=teravest@chromium.org,ncbray@chromium.org NOTREECHECKS=true NOTRY=true BUG=401755 Review URL: https://codereview.chromium.org/524483002 Cr-Commit-Position: refs/heads/master@{#292522}
-
spang authored
Also switch harfbuzz to internal by default to minimize deps. BUG=178543 TEST=run the tool TBR=bashi1 Review URL: https://codereview.chromium.org/509323004 Cr-Commit-Position: refs/heads/master@{#292521}
-
ananta authored
The operations would get routed to the viewer process under the assumption that it was Windows 8 which would eventually crash while trying to open the metro dialogs which don't work on Windows 7. Fix is to return false from the ShellDialogsDelegateWin::IsWindowInMetro function for anything below Windows 8. BUG=356475 Review URL: https://codereview.chromium.org/510223002 Cr-Commit-Position: refs/heads/master@{#292520}
-
thestig authored
NOTRY=true Review URL: https://codereview.chromium.org/522483002 Cr-Commit-Position: refs/heads/master@{#292519}
-
morrita authored
This CL add a ChannelProxy equivalent of the Channel benchmark to ipc_perftests. To use it in the benchmark, TestIOThread is extracted from mojo/system/ to base/test TEST=IPChannelPerfTest.ChannelProxyPingPong R=viettrungluu@chromium.org,brettw@chromium.org,darin@chromium.org BUG=none Review URL: https://codereview.chromium.org/488003003 Cr-Commit-Position: refs/heads/master@{#292518}
-
yiyaoliu authored
BUG=308692 Review URL: https://codereview.chromium.org/513803005 Cr-Commit-Position: refs/heads/master@{#292517}
-
skuhne authored
BUG=355227 TEST=visual Review URL: https://codereview.chromium.org/515973003 Cr-Commit-Position: refs/heads/master@{#292516}
-
sbc authored
This initial version still returns ENOSYS. Review URL: https://codereview.chromium.org/512603008 Cr-Commit-Position: refs/heads/master@{#292515}
-
dcheng authored
BUG=110610 Review URL: https://codereview.chromium.org/511173002 Cr-Commit-Position: refs/heads/master@{#292514}
-
miu authored
While debugging flaky browser_tests, it was revealed that a WebContentsVideoCaptureMachine could actually outlive the tear-down of the BrowserThreadImpl for the UI thread. Not having been explicitly stopped first, destructors in the object graph would execute clean up code that would attempt operations that are invalid after the BrowserThreadImpl for the UI thread has been torn down. This change also includes a bunch of minor clean-ups. BUG=396413 Review URL: https://codereview.chromium.org/514073002 Cr-Commit-Position: refs/heads/master@{#292513}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/5d3187faa8b0dc282ac6f16311c8ba96bfb91bd8..78d2b11092668ed42fc97d9a81290a3e226bed43 TBR=mlamouri@chromium.org,hclam@chromium.org Review URL: https://codereview.chromium.org/518573002 Cr-Commit-Position: refs/heads/master@{#292512}
-
boliu authored
Currently, if |compositor_needs_continuous_invalidate_| is unset before PostFallbackTick or FallbackTickFired, then the fallback ticks are cancelled, but we never unset |block_invalidates_|, which will block invalidates indefinitely. Fix is simply always unset |block_invalidates_| even if we skip the fallback tick. BUG=408779 Review URL: https://codereview.chromium.org/512403002 Cr-Commit-Position: refs/heads/master@{#292511}
-
pkotwicz authored
BUG=None TEST=athena_unittests run again Review URL: https://codereview.chromium.org/517053002 Cr-Commit-Position: refs/heads/master@{#292510}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/506773002 Cr-Commit-Position: refs/heads/master@{#292509}
-
- 28 Aug, 2014 24 commits
-
-
felt authored
BUG=402934 Review URL: https://codereview.chromium.org/515803002 Cr-Commit-Position: refs/heads/master@{#292508}
-
dnicoara authored
Finding the root cause of display configuration bugs is harder without knowing which displays were reported as connected. BUG=none Review URL: https://codereview.chromium.org/518553002 Cr-Commit-Position: refs/heads/master@{#292507}
-
jbauman authored
In this case the code below will ack the frame immediately anyway. TEST=BrowserTest.ShouldShowLocationBar Review URL: https://codereview.chromium.org/515373003 Cr-Commit-Position: refs/heads/master@{#292506}
-
fsamuel authored
BUG=408688 Test=Launch chrome://extensions with --enable-embedded-extension-options, open SPDY options, navigate to www.google.com, the "Options: SPDY Proxy Extension Options" entry should disappear from the Task Manager. Review URL: https://codereview.chromium.org/514653003 Cr-Commit-Position: refs/heads/master@{#292505}
-
markdittmer authored
BUG=377978 Review URL: https://codereview.chromium.org/493633003 Cr-Commit-Position: refs/heads/master@{#292504}
-
acolwell authored
Moving the Preload out of the content namespace and into BufferedDataSource since that class is the primary reason this enum exists. BUG=408338 Review URL: https://codereview.chromium.org/512413002 Cr-Commit-Position: refs/heads/master@{#292503}
-
tsepez authored
This brings in: f105b19 No need to release resources in destructor of CPDF_ShadingObject fdcc874 Restrict index not be greater than row_size in TIFF_PredictLine 405478d Use valid bpc value in LoadPalette() and ContinueToLoadMask() a67da71 Fix a bug when looping through m_pCompData 96f8786 Bounds check before fixed-size memcmp() in CJPX_Decoder::Init(). TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/515983005 Cr-Commit-Position: refs/heads/master@{#292502}
-
vitalybuka authored
Removed win_pdf_metafile_for_printing gyp option. Removed WIN_PDF_METAFILE_FOR_PRINTING define. BUG=170859 TBR=yzshen Review URL: https://codereview.chromium.org/516823002 Cr-Commit-Position: refs/heads/master@{#292501}
-
Brett Wilson authored
Previously "component" was a built-in function that forwarded to source_set, static_library, or shared_library depending on the value of component_mode. And test was a built-in function that forwarded to executable. These can be expressed as templates instead. This patch removes the built-in versions and implements the templates in the master build config file. Forwarding all of the variables for these is somewhat tedious, but I still prefer not to add a new concept for this, since it will be rarely used and less clear what is happening. With the updated BUILDCONFIG.gn file, the build will work with both the old and new GN version (the built-in version of component and test take precedence). When the new GN binary is pushed, we can remove the references to component_mode. BUG= R=hclam@chromium.org Review URL: https://codereview.chromium.org/516703005 Cr-Commit-Position: refs/heads/master@{#292500}
-
zork authored
BUG=381007 Review URL: https://codereview.chromium.org/517023002 Cr-Commit-Position: refs/heads/master@{#292499}
-
jbauman authored
Instead of requesting a layer, a copy of the entire surface is requested. Actually handling the request isn't implemented yet. BUG=397730 Review URL: https://codereview.chromium.org/509193002 Cr-Commit-Position: refs/heads/master@{#292498}
-
jrummell authored
Due to an issue in the CDM, when a session to be loaded is not found, the CDM calls PromiseResolve() instead of the expected PromiseResolveWithSession(""). This change detects this situation and handles it properly. BUG=408337 TEST=existing EME tests pass Review URL: https://codereview.chromium.org/518523002 Cr-Commit-Position: refs/heads/master@{#292497}
-
hubbe authored
More cleanup to come. BUG=406622 Review URL: https://codereview.chromium.org/514263002 Cr-Commit-Position: refs/heads/master@{#292496}
-
Rahul Chaturvedi authored
The initializer for the Copresence permission is malformed. It specifies the message id instead of the flag. R=kalman@chromium.org BUG=None. Review URL: https://codereview.chromium.org/523433002 Cr-Commit-Position: refs/heads/master@{#292495}
-
Scott Graham authored
125 comes from: 150% == 144 logpixels 125% == 120 logpixels 100% == 96 logpixels R=cpu@chromium.org, sky@chromium.org, ananta@chromium.org BUG=395425 Review URL: https://codereview.chromium.org/516743002 Cr-Commit-Position: refs/heads/master@{#292494}
-
cpu authored
On Windows the message pump code tried to manage the systemwide timer resolution to fire delayed tasks with better than 15ms resolution but it is buggy. This is https://codereview.chromium.org/395913006 please see that review for rationale. BUG=153139 TBR=jamesr,darin TEST=included, also see bug for manual verification. Review URL: https://codereview.chromium.org/509223002 Cr-Commit-Position: refs/heads/master@{#292493}
-
stevenjb authored
BUG=407162 Review URL: https://codereview.chromium.org/511923002 Cr-Commit-Position: refs/heads/master@{#292492}
-
noamsml authored
The Privet filesystem code is unmaintained, and it isn't aligned with PrivetV3. Remove it for now. BUG= Review URL: https://codereview.chromium.org/492693004 Cr-Commit-Position: refs/heads/master@{#292491}
-
aboxhall authored
https://codereview.chromium.org/491483006 BUG=406622 Review URL: https://codereview.chromium.org/497263002 Cr-Commit-Position: refs/heads/master@{#292490}
-
mef authored
BUG=390267 Review URL: https://codereview.chromium.org/513413002 Cr-Commit-Position: refs/heads/master@{#292489}
-
vitalybuka authored
Removed header_footer_info_ member. BUG=263710 Review URL: https://codereview.chromium.org/510253002 Cr-Commit-Position: refs/heads/master@{#292488}
-
dcheng authored
BUG=110610 Review URL: https://codereview.chromium.org/515093003 Cr-Commit-Position: refs/heads/master@{#292487}
-
Nasko Oskov authored
This CL is a reland of https://codereview.chromium.org/479403004/ without the part enabling the test. The test is failing due to several bugs, some of which are fixed in this CL and some others lingering. The goal is to reland these fixes without enabling the test and fixing the rest of the issues in followup changes. BUG=304341 R=avi@chromium.org, creis@chromium.org Review URL: https://codereview.chromium.org/509063004 Cr-Commit-Position: refs/heads/master@{#292486}
-
jsbell authored
The Blob type was serialized/restored correctly on the Blink side, but not on the Chromium side, so when reading a Blob as a stream the type would be unset. BUG=408120 R=cmumford@chromium.org TEST=https://codereview.chromium.org/509213005 Review URL: https://codereview.chromium.org/511373002 Cr-Commit-Position: refs/heads/master@{#292485}
-