- 26 Jan, 2016 40 commits
-
-
sergeyu authored
Previously some code specific to multi-process architecture was compiled on Linux and Mac, but it doesn't make sense there. Review URL: https://codereview.chromium.org/1637983002 Cr-Commit-Position: refs/heads/master@{#371607}
-
caryclark authored
An upcoming CL in Skia uses SIMD instructions to compute the coefficients for cubic and quadratic polynomials. This introduces some minor differences. Add a legacy flag to permit cubic eval() to work as it did in the past until the appropriate layout tests can be rebaselined. R=fmalita@chromium.org Review URL: https://codereview.chromium.org/1632313002 Cr-Commit-Position: refs/heads/master@{#371606}
-
rouslan authored
The browser process sends the system spellchecker language to the renderer to initialize its text breaker. The text breaker is used when providing suggestions in the context menu. If the text breaker is not initialized, the menu has no suggestions. The browser saves the system spellchecker language into the unsynced preference prefs::kSpellCheckDictionaries. This preference is also used by the spelling service client. If the preference is empty, then the client is disabled. BUG=577835 Review URL: https://codereview.chromium.org/1602303002 Cr-Commit-Position: refs/heads/master@{#371605}
-
pkotwicz authored
We set enable_remoting=true in the command line on the official builders. Set enable_remoting=true as the default on Chromium as well. BUG=544298 Review URL: https://codereview.chromium.org/1619913002 Cr-Commit-Position: refs/heads/master@{#371604}
-
mattm authored
Name constraints with excluded names but no permitted names should allow names not matching the excluded names. BUG=410574 Review URL: https://codereview.chromium.org/1546653004 Cr-Commit-Position: refs/heads/master@{#371603}
-
lambroslambrou authored
This makes the settings into proper GN args that can be overridden. Also added "remoting" to their names since they are remoting-specific. Also fixed the Cardboard-enabled build (code was expecting '1'/'0' but GN was supplying 'true'/'false'). Review URL: https://codereview.chromium.org/1637093002 Cr-Commit-Position: refs/heads/master@{#371602}
-
boliu authored
BUG=581380 Review URL: https://codereview.chromium.org/1635143002 Cr-Commit-Position: refs/heads/master@{#371601}
-
tfarina authored
This moves this free function inside an unnamed namespace (making its symbol t instead of T, and thus hidding it from global) and while at it removes its unused |err| parameter. BUG=None TEST=ipc_tests R=cpu@chromium.org Review URL: https://codereview.chromium.org/1632133003 Cr-Commit-Position: refs/heads/master@{#371600}
-
mfomitchev authored
Disabling flaky IndexedDBBrowserTestSingleProcess.RenderThreadShutdownTest on linux_chromium_asan_rel_ng TBR=jsbell BUG=581448 Review URL: https://codereview.chromium.org/1634253002 Cr-Commit-Position: refs/heads/master@{#371599}
-
sky authored
BUG=579645 TEST=none Review URL: https://codereview.chromium.org/1635603002 Cr-Commit-Position: refs/heads/master@{#371598}
-
dgozman authored
This saves a little time on startup. BUG=540864 Review URL: https://codereview.chromium.org/1617493002 Cr-Commit-Position: refs/heads/master@{#371597}
-
ortuno authored
Review URL: https://codereview.chromium.org/1638973002 Cr-Commit-Position: refs/heads/master@{#371596}
-
erickung authored
Sets video profile based on profile idc in SPS header rather than setting VIDEO_CODEC_PROFILE_UNKNOWN always. BUG= internal b/26217237 Review URL: https://codereview.chromium.org/1633573003 Cr-Commit-Position: refs/heads/master@{#371595}
-
erg authored
BUG=557405 Review URL: https://codereview.chromium.org/1634743004 Cr-Commit-Position: refs/heads/master@{#371594}
-
xidachen authored
In a previous CL, it was pointed out that the number "4" should be replaced by info.bytesPerPixel() in two places. In that CL, it was corrected in one place, but the other one was accidently left over. This CL corrects the left-over one. Review URL: https://codereview.chromium.org/1631353002 Cr-Commit-Position: refs/heads/master@{#371593}
-
alexmos authored
The frame traversal in that function was accessing the frame's SecurityOrigin via the document(), which is incorrect in the case of remote frames which have no document(). BUG=581274 Review URL: https://codereview.chromium.org/1634203002 Cr-Commit-Position: refs/heads/master@{#371592}
-
emircan authored
BUG=569976 Review URL: https://codereview.chromium.org/1625743002 Cr-Commit-Position: refs/heads/master@{#371591}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/49a4b13b5f86..7442b11368c9 $ git log 49a4b13b5..7442b1136 --date=short --no-merges --format='%ad %ae %s' CQ_INCLUDE_TRYBOTS= TBR=catapult-sheriff@chromium.org Review URL: https://codereview.chromium.org/1632293002 Cr-Commit-Position: refs/heads/master@{#371590}
-
noel authored
media/color-profile-munsell-bt601-smpte-to-srgb.html media/color-profile-munsell-bt709-to-srgb.html The tests transform a test chart image from source color profile (bt601, bt709) to sRGB and compares the output with the expected Munsell colors [1] and studio video range black and white colors and some proportions of them, SG Black 2x for example. Note: all the expected colors are in sRGB color space. The tests (one each for bt601 & bt709) are designed to be run in the test harness automatically, but also manually to help detect color changes should that happen in future. The tabulated color results of these tests are correct and don't change or need to be rebaselined. If the test colors changed, it is a colorimetric error: the offending CL should be reverted. [1] For more details on Munsell colors and gamuts, see http://www.brucelindbloom.com/index.html?ColorCheckerRGB.html TBR=kbr@chomium.org BUG=570150 Review URL: https://codereview.chromium.org/1629963005 Cr-Commit-Position: refs/heads/master@{#371589}
-
dtseng authored
- switch tabs via ctrl+tab result: a node of role client triggers a focus event. It is a child of the toolbar in the desktop tree. expected: generic elements in the desktop tree like this one should not be focused. Notes: This focus event causes us to flip to compat temporarily but due to logic in TabsApiHandler, we switch right back to classic. However, since range was previously set to the client node (and compat flips off classic), we're stuck in a halfway state where classic mode is set but the content script was unloaded. Review URL: https://codereview.chromium.org/1631663006 Cr-Commit-Position: refs/heads/master@{#371588}
-
charliea authored
This will give us the flexibility within PowerTracingAgent to signify that an error occurred (such as bad data coming over the serial connection). Review URL: https://codereview.chromium.org/1637933002 Cr-Commit-Position: refs/heads/master@{#371587}
-
nednguyen authored
BUG=581103 Review URL: https://codereview.chromium.org/1633143003 Cr-Commit-Position: refs/heads/master@{#371586}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1637783002 Cr-Commit-Position: refs/heads/master@{#371585}
-
stevenjb authored
This moves the display layout management logic into a separate file so that it can be replaced with a new layout manager that can handle 3+ displays without affecting 2 monitor behavior. BUG=576375 Review URL: https://codereview.chromium.org/1626573003 Cr-Commit-Position: refs/heads/master@{#371584}
-
charliea authored
Review URL: https://codereview.chromium.org/1637493004 Cr-Commit-Position: refs/heads/master@{#371583}
-
xidachen authored
At this moment, there is a line in the above function that has a small typo in it, this CL corrects it. Review URL: https://codereview.chromium.org/1639843002 Cr-Commit-Position: refs/heads/master@{#371582}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/eae84c2e0e21..ed0bf1b43e19 $ git log eae84c2e0..ed0bf1b43 --date=short --no-merges --format='%ad %ae %s' 2016-01-26 reed remove unused sample 2016-01-26 cblume Cleaning up trailing spaces and typos. CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1631033004 Cr-Commit-Position: refs/heads/master@{#371581}
-
qiangchen authored
In this CL, we did the following stuff: Stream audio with screen share (only supported for platform Windows and ChromeOS). The essential functionality was there, we just connect the code path. Currently we put the functionalities behind a flag --enable-audio-support-for-desktop-share. We'll bring the functionality on by default, after we finish the future CL which handles tab sharing and the future CL which handles the user permission for audio output sharing. BUG=557222 Review URL: https://codereview.chromium.org/1576073003 Cr-Commit-Position: refs/heads/master@{#371580}
-
caseq authored
Revert of DevTools: do not use ScriptFunctionCall in the front-end embedder. (patchset #1 id:1 of https://codereview.chromium.org/1577153002/ ) Reason for revert: Breaks context menu handling in DevTools front-end. Original issue's description: > DevTools: do not use ScriptFunctionCall in the front-end embedder. > > Committed: https://crrev.com/4a595ca1ace2d1592d154cac89b1085f7baa771b > Cr-Commit-Position: refs/heads/master@{#371337} TBR=dgozman@chromium.org,pfeldman@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/1635883004 Cr-Commit-Position: refs/heads/master@{#371579}
-
John Budorick authored
This reverts commit 5db5d9e5. Cr-Commit-Position: refs/heads/master@{#371578}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1638503003 Cr-Commit-Position: refs/heads/master@{#371577}
-
sorin authored
This is a feature of the update protocol, which allows the server to prioritize returning urls that can be cached by downstream proxies. BUG=579762 Review URL: https://codereview.chromium.org/1606943007 Cr-Commit-Position: refs/heads/master@{#371576}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1638593003 Cr-Commit-Position: refs/heads/master@{#371575}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1639683002 Cr-Commit-Position: refs/heads/master@{#371574}
-
hartmanng authored
BUG=580262,562189 Review URL: https://codereview.chromium.org/1618973002 Cr-Commit-Position: refs/heads/master@{#371573}
-
petewil authored
If you have an offline page showing, but connectivity has returned, when you pull down on the page to refresh, we should reload the online version. This change catches the onPageLoadStarted event to check for that case. The onLoadUrl event does not get called on a reload, and the onUpdateUrl event is also not called on a reload, so onPageLoadStarted is likely our best candidate. BUG=565529 Review URL: https://codereview.chromium.org/1586783003 Cr-Commit-Position: refs/heads/master@{#371572}
-
mgersh authored
Loading the native library can cause a crash on some older versions of Android. This CL provides a way for embedders to implement custom library loading logic that works around the issue. BUG=550584 R=xunjieli@chromium.org Committed: https://crrev.com/12d01cb35ec0ed7a259c19dd1390b5a486d61a9d Cr-Commit-Position: refs/heads/master@{#371319} Review URL: https://codereview.chromium.org/1619673004 Cr-Commit-Position: refs/heads/master@{#371571}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1633063002 Cr-Commit-Position: refs/heads/master@{#371570}
-
xidachen authored
At this moment, the texImage2D and texSubImage2D for ImageBitmap is still hiding behind a RuntimeEnabled flag. Since ImageBitmap has been shipped: https://codereview.chromium.org/1636633002/ We should remove this run time flag as well. Review URL: https://codereview.chromium.org/1632853003 Cr-Commit-Position: refs/heads/master@{#371569}
-
stip authored
BUG=525873 Review URL: https://codereview.chromium.org/1635983002 Cr-Commit-Position: refs/heads/master@{#371568}
-