- 26 Mar, 2015 40 commits
-
-
jam authored
Review URL: https://codereview.chromium.org/1008563003 Cr-Commit-Position: refs/heads/master@{#322400}
-
vkuzkokov authored
BUG= TBR=tsepez@chromium.org,pfeldman@chromium.org Review URL: https://codereview.chromium.org/1031393002 Cr-Commit-Position: refs/heads/master@{#322399}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/da5a017..12736d7 TBR=loislo@chromium.org,pkasting@chromium.org Review URL: https://codereview.chromium.org/1031403002 Cr-Commit-Position: refs/heads/master@{#322398}
-
emaxx authored
BUG=470835 Review URL: https://codereview.chromium.org/1034923002 Cr-Commit-Position: refs/heads/master@{#322397}
-
cblume authored
BUG=466867 Review URL: https://codereview.chromium.org/1010323002 Cr-Commit-Position: refs/heads/master@{#322396}
-
siggi authored
BUG= Review URL: https://codereview.chromium.org/1036623002 Cr-Commit-Position: refs/heads/master@{#322395}
-
danakj authored
This unifies the painting code path between Views that are and are not backed by layers, they all go through View::Paint now. View::Paint will only translate the canvas relative to the parent when layer() is false, keeping the origin at the origin of the view when it is backed by a layer(). R=sky BUG=466426 Review URL: https://codereview.chromium.org/1035833002 Cr-Commit-Position: refs/heads/master@{#322394}
-
horo authored
We are using .svg file in ServiceWorkersView but the mime-type for .svg file is not correctly set. BUG=466871 Review URL: https://codereview.chromium.org/1035873002 Cr-Commit-Position: refs/heads/master@{#322393}
-
beaudoin authored
BUG=467712 Review URL: https://codereview.chromium.org/1026053003 Cr-Commit-Position: refs/heads/master@{#322392}
-
caseq authored
This re-lands https://codereview.chromium.org/750183008 (originally by loislo@) with the output chunk size reduced down from 10M to 100K (close to what it used to be originally). The reason for telemetry failures of original change on Windows was the bug in websocket-client (https://github.com/liris/websocket-client/issues/163) that caused it to fragment Python heap when receiving a large frame. Original issue description: Move serialization into a worker thread. As a result IO thread will be able to send messages to the browser. The original implementation did serialization on IO thread and was not able to send the messages because ipc had is_blocked_on_write_ = true and had no chance to check the actual state of the channel. So the messages were collected in output_queue. Also the messages could be quite big and could block the IO thread for a long time. BUG=463572 TBR=dsinclair (as he already l-g-t-m-d the original patch) Review URL: https://codereview.chromium.org/1035783002 Cr-Commit-Position: refs/heads/master@{#322391}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/3a82b4f..da5a017 TBR=loislo@chromium.org,pkasting@chromium.org Review URL: https://codereview.chromium.org/1030363002 Cr-Commit-Position: refs/heads/master@{#322390}
-
earthdok authored
BUG=none R=glider@chromium.org Review URL: https://codereview.chromium.org/1038883002 Cr-Commit-Position: refs/heads/master@{#322389}
-
wjmaclean authored
At present, the initialization of the guest's zoom level in GuestViewBase::StartTrackingEmbedderZoomLevel() is ineffective since the guest web contents may not have navigated yet ... this occurs for example when embedding extension options pages in the settings- extensions page. Also, the extension options guest should place its guest into isolated zoom mode since changes to the zoom of settings-extensions page should not affect the zoom level of the associated extension. BUG=468397, 468404 Review URL: https://codereview.chromium.org/1009193003 Cr-Commit-Position: refs/heads/master@{#322388}
-
rch authored
Leaving the QuicDispatcher unchanged for now. Will unify that in a followup. Also removes the remaining balsa dependency in QuicInMemoryCache. Review URL: https://codereview.chromium.org/1032903002 Cr-Commit-Position: refs/heads/master@{#322387}
-
jsbell authored
Follow up to https://codereview.chromium.org/1029423004 that cleans up the now-unused plumbing for the Cache Storage API routed through Service Worker and Embedded Worker classes. Service Workers and other contexts can access the API via the embedder API. BUG=439389 R=kinuko@chromium.org,michaeln@chromium.org Review URL: https://codereview.chromium.org/1022703003 Cr-Commit-Position: refs/heads/master@{#322386}
-
dgozman authored
BUG=470873 TBR=yoz@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1029893007 Cr-Commit-Position: refs/heads/master@{#322385}
-
spang authored
We'll need this to do touchscreen (and other absolute) device testing with real event dumps as input since the axis information must be valid. Replace the shell script to capture capabilities with a python script, because the absolute axis bounds aren't exposed in sysfs. We have python-evdev on test images. Unfortunately it's a bit incomplete & buggy, so fall back to sysfs for the missing & incorrect bits. The "sw" field was accidently omitted previously and is now populated. BUG=none TEST=events_unittests Review URL: https://codereview.chromium.org/1019793011 Cr-Commit-Position: refs/heads/master@{#322384}
-
twellington authored
image_decoder has been refactored into a Leaky (accessible from multiple threads) LazyInstance (singleton), that uses one utility process running in batch mode to decode all images. This CL fixes a performance problem with scrolling in bookmarks on Android. Previously we were using a new image_decoder and therefore a new utility process for each image we wanted to decode. Now we use one shared image_decoder that has one utility process running in batch mode for decoding all images. BUG=451201 Review URL: https://codereview.chromium.org/931993002 Cr-Commit-Position: refs/heads/master@{#322383}
-
dgozman authored
BUG=451004 Review URL: https://codereview.chromium.org/1023783004 Cr-Commit-Position: refs/heads/master@{#322382}
-
pneubeck authored
After https://codereview.chromium.org/197013007 ConfigurationPolicyHandler provided a default implementation of ApplyPolicySettings() that simply called NOTREACHED. Also it wasn't clear anymore what of ConfigurationPolicyHandler is the public interface and what is default implementation. Both issues are resolved with this change. Review URL: https://codereview.chromium.org/1019283005 Cr-Commit-Position: refs/heads/master@{#322381}
-
boliu authored
In the public sdk API, apps should be able to hold a strong WebView reference from WebChromeClient or WebViewClient, without having to worry about preventing WebView from gc-ed. Simulate that behavior in testCreateAndGcManyTimes by having the AwContentsClient hold a strong reference to AwContents. And remove the strong ref from AwWebContentsObserver to make the test pass. BUG=469803 Review URL: https://codereview.chromium.org/1036893002 Cr-Commit-Position: refs/heads/master@{#322380}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/d125e47c..b8c26baf 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/1030773004 Cr-Commit-Position: refs/heads/master@{#322379}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/211c921..3a82b4f TBR=loislo@chromium.org Review URL: https://codereview.chromium.org/1008883005 Cr-Commit-Position: refs/heads/master@{#322378}
-
sebmarchand authored
We need to do this because when doing a PGO build the /GL flag gets automatically set everywhere, and we're hitting this warning: https://msdn.microsoft.com/en-us/library/b8s7ctwz%28v=vs.90%29.aspx because of the custom memset implementation (https://code.google.com/p/chromium/codesearch#chromium/src/chrome/installer/mini_installer/mini_installer.cc&q=mini_ins&sq=package:chromium&l=862) TBR=robertshield@chromium.org BUG=309849 Review URL: https://codereview.chromium.org/1035893002 Cr-Commit-Position: refs/heads/master@{#322377}
-
dconnelly authored
This makes it possible to use the types it contains in non-Blink embedders such as iOS. The blink::WebCredential constructor of CredentialInfo is now a factory function that stayed in content/. BUG=470815 TBR=jochen Review URL: https://codereview.chromium.org/1031253003 Cr-Commit-Position: refs/heads/master@{#322376}
-
jkarlin authored
The BackgroundSyncManager is the class that handles registration of background syncs. This first CL handles storage and retrieval of registrations and sequential ordering of async operations. Future CLs will add permission checks and incorporate a scheduler. Eventually the BackgroundSyncManager will be created and owned by the BackgroundSyncMessageFilter, which will be owned by the RenderViewHost. BackgroundSync Design Doc: https://docs.google.com/document/d/1MAuNzV0q5FporLZVJMh7CMrwTHwcZsWX6YUwPwKMGco/ BUG=449443 Review URL: https://codereview.chromium.org/950343006 Cr-Commit-Position: refs/heads/master@{#322375}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/36352bf..ce86687 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=hcm@google.com Review URL: https://codereview.chromium.org/1032983002 Cr-Commit-Position: refs/heads/master@{#322374}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/a81080d..211c921 TBR=loislo@chromium.org Review URL: https://codereview.chromium.org/1020743004 Cr-Commit-Position: refs/heads/master@{#322373}
-
hirono authored
The PIEX library has been submitted to official chrome repository. The CL let Files.app use the library to load RAW thumbnails. BUG=396702 TEST=None Review URL: https://codereview.chromium.org/1034713002 Cr-Commit-Position: refs/heads/master@{#322372}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#322371}
-
earthdok authored
BUG=371368, 470848 TBR=eugenis@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1038803003 Cr-Commit-Position: refs/heads/master@{#322370}
-
jvanverth authored
Revert of Enable distance field text on Android. (patchset #1 id:1 of https://codereview.chromium.org/884793003/) Reason for revert: Apparently causing significant perf regressions in thread_times.key_silk_cases. Original issue's description: > Enable distance field text on Android. > > Sets the Android default for Ganesh-rendered text to use signed distance fields. > The non-Android default still disables distance fields. > > BUG=446722 > OWNERS=jam@chromium.org > > Committed: https://crrev.com/58c4e746a47894de46dbfaa978f163d2072df7e0 > Cr-Commit-Position: refs/heads/master@{#320272} TBR=vangelis@chromium.org,vmiura@chromium.org,djsollen@chromium.org,robertphillips@chromium.org,jam@chromium.org,robertphillips@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=446722 Review URL: https://codereview.chromium.org/1034153002 Cr-Commit-Position: refs/heads/master@{#322369}
-
mikhail.pozdnyakov authored
Review URL: https://codereview.chromium.org/1036883002 Cr-Commit-Position: refs/heads/master@{#322368}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/05035d4..36352bf CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=hcm@google.com Review URL: https://codereview.chromium.org/1014853007 Cr-Commit-Position: refs/heads/master@{#322367}
-
knn authored
Reason for revert: Changing the first output of grd file caused build to fail due to a bad depfile. Now depfile depends on a stampfile instead of first output. Hence this also adds an additional grit roll from r187 to r188. Effective grit roll from r186:r188 188: Allow depending on stamp for grit files. 187: Add a Policy template writer that generates Android resources which can be exposed through Android's App Restriction Schema. Original issue's description: > Revert of Add i18n support for Android App Restrictions. (patchset #7 id:120001 of https://codereview.chromium.org/865573002/) > > Reason for revert: > Broke some GN builds, e.g.: > > http://build.chromium.org/p/chromium.linux/builders/Linux%20GN/builds/24483/steps/compile/logs/stdio > http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20GN/builds/11092/steps/compile/logs/stdio > > ninja: Entering directory `/mnt/data/b/build/slave/Linux_GN/build/src/out/Release' > ninja:error: expected depfile 'gen/chrome/policy_templates.d' to mention 'gen/chrome/app/policy/common/html/am/chrome_policy_list.html', got 'gen/chrome/app/policy/linux/examples/chrome.json' > > > Committed: https://crrev.com/27ee0fa9afe9cb97016e532bd0cecd1b011251b9 > Cr-Commit-Position: refs/heads/master@{#319773} BUG=450548 Review URL: https://codereview.chromium.org/997523002 Cr-Commit-Position: refs/heads/master@{#322366}
-
tfarina authored
Tested with the following command lines on Linux: $ gn gen out-gn --args=enable_nacl=true $ ninja -C out-gn nacl_loader_unittests Note: There are still many link errors with this target. They will be addressed in followup patches. BUG=432959 TEST=see above R=bradn@google.com,dpranke@chromium.org TBR=bradnelson@chromium.org Review URL: https://codereview.chromium.org/1034723002 Cr-Commit-Position: refs/heads/master@{#322365}
-
msramek authored
While the exceptions of the deprecated MEDIASTREAM are no longer used (and were migrated to MEDIASTREAM_MIC and MEDIASTREAM_CAMERA exceptions), the default value is still used. This CL: 1. Replaces MEDIASTREAM default checks with MIC or CAMERA checks in contexts where only one of the two permissions is required. 2. Replaces MEDIASTREAM default checks with both MIC and CAMERA in contexts where both of the permissions are required. 3. Replaces any write of MEDIASTREAM default with write of both MIC and CAMERA. This CL does not get rid of the MEDIASTREAM content setting entirely. This is because: 1. There is a mapping between content settings and sections in chrome://settings/content. The media part is mapped to MEDIASTREAM. 2. There is a mapping between content settings and icons shown in the omnibox when the content settings are queried. The icon shown for both camera and microphone is mapped to MEDIASTREAM. However, after this CL is applied, the MEDIASTREAM content setting will only be used in the above circumstances, never to set or get a value. To avoid complicated syncing between MEDIASTREAM value on old versions and MEDIASTREAM_MIC, MEDIASTREAM_CAMERA on new versions of Chrome, this CL will not land until crbug.com/452388 is resolved. TESTED=UI,policy BUG=464382 Review URL: https://codereview.chromium.org/965103004 Cr-Commit-Position: refs/heads/master@{#322364}
-
tfarina authored
public_configs is the non-deprecated name of direct_dependent_configs. BUG=None TEST=gn gen out-gn R=brettw@chromium.org Review URL: https://codereview.chromium.org/1034063002 Cr-Commit-Position: refs/heads/master@{#322363}
-
perkj authored
This test now only use 2 peerconnections. Furthermore, it only creates one mediastream that is sent from pc1 to pc2. When the stream is playing on pc2, it is cloned and sent back to pc1. The purpose of this refactoring is no reduce the CPU requirement and the number of streams sent to fix flakiness problems. This cl removes the test CanForwardRemoteStream720 since it test the same thing as CanForwardRemoteStream but with a higher video resolution. BUG=469819 Review URL: https://codereview.chromium.org/1032953002 Cr-Commit-Position: refs/heads/master@{#322362}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/c1a6e5d..a81080d TBR=loislo@chromium.org Review URL: https://codereview.chromium.org/1008473005 Cr-Commit-Position: refs/heads/master@{#322361}
-