- 17 Oct, 2014 40 commits
-
-
dcheng authored
BUG=423621 Review URL: https://codereview.chromium.org/663563002 Cr-Commit-Position: refs/heads/master@{#300128}
-
torne authored
Summary of changes available at: https://chromium.googlesource.com/external/gyp/+log/46282ce..9e65902 BUG= Review URL: https://codereview.chromium.org/660233003 Cr-Commit-Position: refs/heads/master@{#300127}
-
mkearney authored
Renato Mangini wrote the new codelab. Pearl Chen created cl: https://codereview.chromium.org/609433003/. I couldn't use her patch, so I created a new one manually, made edits, and am ready to launch this. Review URL: https://codereview.chromium.org/645693006 Cr-Commit-Position: refs/heads/master@{#300126}
-
yoshiki authored
This patch makes AthenaWebView handle content::WebContentsDelegate::CloseContents(). BUG=412188 TEST=manual test Review URL: https://codereview.chromium.org/659113002 Cr-Commit-Position: refs/heads/master@{#300125}
-
simonb authored
When loading from a zip file, record the path to the zip file, rather that the name of the item within the zip file, as being the name of the loaded library. Fixes failure to use shared relro, visible in logcat as: E/chromium_android_linker(19916): UseSharedRelro: Could not find libchrome.2192.0.so W/chromium_android_linker(19916): Could not use shared RELRO section for libchrome.2192.0.so Note: load from zip file currently supports only a single shared library within any given zip file. BUG=390618 Review URL: https://codereview.chromium.org/667443002 Cr-Commit-Position: refs/heads/master@{#300124}
-
gunsch authored
In this case, subsample information is allowed to be elided, but hardware backends typically translate subsample information into hardware APIs. To more cleanly map across this, translate this case into one fully-encrypted "subsample" while transferring DecryptConfigs. R=lcwu@chromium.org,damienv@chromium.org BUG=None Review URL: https://codereview.chromium.org/659343003 Cr-Commit-Position: refs/heads/master@{#300123}
-
pbos authored
Picks up fix for a use-of-uninitialized on WebRTC standalone MemorySanitizer fixed in upstream r9046. R=tommi@chromium.org BUG= Review URL: https://codereview.chromium.org/656293004 Cr-Commit-Position: refs/heads/master@{#300122}
-
oshima authored
The test requires another CL and will be added later. BUG=None Review URL: https://codereview.chromium.org/663623002 Cr-Commit-Position: refs/heads/master@{#300121}
-
simonb authored
If no RELRO pages are swapped, the library reports an error by returning false, but currently does not supply any message for the log. Add one. BUG= Review URL: https://codereview.chromium.org/649183006 Cr-Commit-Position: refs/heads/master@{#300120}
-
binji authored
The offline pnacl translator was not being tested anywhere after we switched to using pnacl debug info. BUG=none R=sbc@chromium.org Review URL: https://codereview.chromium.org/662683003 Cr-Commit-Position: refs/heads/master@{#300119}
-
alexst authored
Some scanout buffers may need to be allocated on a device that is separate from the GPU, for example, a usb monitor or a separate display controller. For those devices, scanout buffers are shared with the GPU via dmabuf and we use dmabuf eglimage to render into them. BUG=380861 Review URL: https://codereview.chromium.org/656133002 Cr-Commit-Position: refs/heads/master@{#300118}
-
paulmeyer authored
Swapped the variable names "WebView" and "WebViewInternal" in web_view.js and other files that import them. These variables were inconsistenly named (compared to other variables), leading to confusing lines like: var WebViewInternal = require('webView').WebViewInternal; var WebView = require('webViewInternal').WebView; This completes lazyboy@'s TODO in web_view.js. Review URL: https://codereview.chromium.org/643903005 Cr-Commit-Position: refs/heads/master@{#300117}
-
reillyg authored
On platforms without udev support we must open a libusb device handle in order to read string descriptors from the device. Rapidly opening and closing the handle could cause problems with the platform's USB stack so this patch caches the manufacturer, product and serial number strings all at once. It also prevents a leak of the device handle by explicitly closing it. BUG=346953 Review URL: https://codereview.chromium.org/659943003 Cr-Commit-Position: refs/heads/master@{#300116}
-
vadimt authored
Mechanical change that adds instrumentation required to locate the source of jankiness (i.e. a long-running fragment of code executed as a part of the task that causes jank) in the code. See the bug for details on what kind of jank we are after. A number of similar CLs were landed, and none of them caused issues. The code of the instrumentation is highly optimized and is not expected to affect performance. The code simply creates a diagnostic task which is identical to ones created by PostTask or IPC message handlers. Landing as TBR since this is a mechanical, safe and temporary change. BUG=424359 TBR=pauljensen@chromium.org Review URL: https://codereview.chromium.org/661113002 Cr-Commit-Position: refs/heads/master@{#300115}
-
jdduke authored
Restore the previous behavior of hiding the PopupWindow-based text selection handles on scroll. Note that such hiding applies when the content is scrolling as well as when the containing View is moving. Also avoid sync barrier issues by deferring invalidations relating to visibility and position updates of the PopupWindow. BUG=423120 Review URL: https://codereview.chromium.org/657593003 Cr-Commit-Position: refs/heads/master@{#300114}
-
pneubeck authored
During a refactoring (https://codereview.chromium.org/402403004/) by mistake a dependency of chromeos_unittests on test_support_content was added. This increased the number of files to compile from ~2200 to ~11000. BUG=NONE Review URL: https://codereview.chromium.org/600753002 Cr-Commit-Position: refs/heads/master@{#300113}
-
nasko authored
This is an another attempt at landing https://codereview.chromium.org/536143002. When a frame is navigating cross-process, its existing document will be completely destroyed and all child frames will be gone. This means that we don't need to create proxy objects for the new SiteInstance in the subtree of the navigating frame. BUG=357747, 417030 Review URL: https://codereview.chromium.org/600483003 Cr-Commit-Position: refs/heads/master@{#300112}
-
mtklein authored
SkRecord backs SkPictureRecorder::beginRecording() (the normal path) now. BUG= Review URL: https://codereview.chromium.org/664583002 Cr-Commit-Position: refs/heads/master@{#300111}
-
igsolla authored
It is very common to go fullscreen on a div containing a video element with custom html controls, so we test that scenario. We also rename AwContentsClientFullScreenVideoTest to AwContentsClientFullScreenTest as this class is now testing the fullscreen API for all types of elements. This change depends on: https://codereview.chromium.org/618013003/ BUG=398485 Review URL: https://codereview.chromium.org/639923003 Cr-Commit-Position: refs/heads/master@{#300110}
-
vadimt authored
Mechanical change that adds instrumentation required to locate the source of jankiness (i.e. a long-running fragment of code executed as a part of the task that causes jank) in the code. See the bug for details on what kind of jank we are after. A number of similar CLs were landed, and none of them caused issues. The code of the instrumentation is highly optimized and is not expected to affect performance. The code simply creates a diagnostic task which is identical to ones created by PostTask or IPC message handlers. Landing as TBR since this is a mechanical, safe and temporary change. BUG=422489 TBR=gavinp@chromium.org, yoz@chromium.org, danakj@chromium.org, michaeln@chromium.org, piman@chromium.org Review URL: https://codereview.chromium.org/653863003 Cr-Commit-Position: refs/heads/master@{#300109}
-
chrome://media-internalsburnik authored
video capture devices and supported formats. Each change to the list of devices (e.g. plug/unplug) automatically refreshes that part of the page. Also allows copying the data in JSON format via window prompt. BUG=344882 Review URL: https://codereview.chromium.org/643343004 Cr-Commit-Position: refs/heads/master@{#300108}
-
earthdok authored
BUG=403007 TBR=yurys@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/660303002 Cr-Commit-Position: refs/heads/master@{#300107}
-
anandc authored
BUG=424376 Review URL: https://codereview.chromium.org/662713002 Cr-Commit-Position: refs/heads/master@{#300106}
-
sebmarchand authored
BUG=330260 Review URL: https://codereview.chromium.org/660753003 Cr-Commit-Position: refs/heads/master@{#300105}
-
johnme authored
This will make it easier to log these statuses to UMA. BUG=401438 Review URL: https://codereview.chromium.org/658783002 Cr-Commit-Position: refs/heads/master@{#300104}
-
earthdok authored
BUG=424575 TBR=morrita@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/650773004 Cr-Commit-Position: refs/heads/master@{#300103}
-
vkuzkokov authored
BUG=405566 Review URL: https://codereview.chromium.org/645033005 Cr-Commit-Position: refs/heads/master@{#300102}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/5bb9700..6fedd3a CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=rmistry@google.com Review URL: https://codereview.chromium.org/666463002 Cr-Commit-Position: refs/heads/master@{#300101}
-
vkuzkokov authored
BUG=387067 Review URL: https://codereview.chromium.org/612913002 Cr-Commit-Position: refs/heads/master@{#300100}
-
ygorshenin authored
BUG=405876 TEST=existing unit_tests and browser_tests Review URL: https://codereview.chromium.org/647043004 Cr-Commit-Position: refs/heads/master@{#300099}
-
Gordana.Cmiljanovic authored
(libyuv r1125) BUG=400684 Review URL: https://codereview.chromium.org/643123002 Cr-Commit-Position: refs/heads/master@{#300098}
-
peter authored
This starts splitting off layout-test specific bits from the ShellContentBrowserClient in a separate class. More patches will follow for moving the other features. BUG=420994 Review URL: https://codereview.chromium.org/639293005 Cr-Commit-Position: refs/heads/master@{#300097}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/660223003 Cr-Commit-Position: refs/heads/master@{#300096}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#300095}
-
xunjieli authored
BUG=411377 Review URL: https://codereview.chromium.org/624443003 Cr-Commit-Position: refs/heads/master@{#300094}
-
merkulova authored
BUG=394771,396628 Review URL: https://codereview.chromium.org/659063002 Cr-Commit-Position: refs/heads/master@{#300093}
-
torne authored
This reverts commit 96256bfe, returning the webview build to using Chrome's copy of ICU. BUG=409851 NOTRY=true Review URL: https://codereview.chromium.org/661983002 Cr-Commit-Position: refs/heads/master@{#300092}
-
serya authored
Basic functionality for android's server and tests. Isolated from GCD code. New button in the debugging activity causes equivalent result with previous one (tunnels a real DevTools socket to a fake one) but uses android service for that (2 ways of tasting may help in bug triaging). It lets test service life cycle and UI (foreground notification). BUG=383418 TEST=DevToolsBridgeServerTest, new button in debugging activity for manual testing Review URL: https://codereview.chromium.org/540383002 Cr-Commit-Position: refs/heads/master@{#300091}
-
merkulova authored
BUG=355073 Review URL: https://codereview.chromium.org/653393002 Cr-Commit-Position: refs/heads/master@{#300090}
-
https://codereview.chromium.org/658593002/jochen authored
Reason for revert: regresses BSS size (doubles it). also, no try for a roll?? Original issue's description: > Roll WebRTC 7390:7447. > > NOTRY=true > BUG=N/A > > Committed: https://crrev.com/45b1f8d30351657be732e73cf1975f4a8a06fae6 > Cr-Commit-Position: refs/heads/master@{#299695} TBR=mikhal@chromium.org,hellner@chromium.org NOTREECHECKS=true NOTRY=true BUG=N/A Review URL: https://codereview.chromium.org/641203005 Cr-Commit-Position: refs/heads/master@{#300089}
-