- 17 Aug, 2016 40 commits
-
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/bf63e616a67e..ff863bc550a8 $ git log bf63e616a..ff863bc55 --date=short --no-merges --format='%ad %ae %s' 2016-08-17 reed move private test for sect_with_horizontal into unittests BUG=638575 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=robertphillips@google.com Review-Url: https://codereview.chromium.org/2251693004 Cr-Commit-Position: refs/heads/master@{#412537}
-
rdevlin.cronin authored
RenderViewHost is deprecated. Most ExtensionFunctions were updated awhile back, but there were still some lingering ones. It looks like one more (zooming in the file manager) can be safely removed. BUG=498017 Review-Url: https://codereview.chromium.org/2204393002 Cr-Commit-Position: refs/heads/master@{#412536}
-
eugenebut authored
If |inner_html| is nil then comparing location with NSNotFound will return YES. In Objective-C rangeOfString: must always compare length with 0 instead because calling methods on nil return 0. This bug was not exposed before because JS execution API could never return nil and rangeOfString: worked correctly on empty strings. BUG=637819 Review-Url: https://codereview.chromium.org/2254553003 Cr-Commit-Position: refs/heads/master@{#412535}
-
about://flagsiclelland authored
BUG=638238 Review-Url: https://codereview.chromium.org/2248083002 Cr-Commit-Position: refs/heads/master@{#412534}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e5e6dcc8..6c31b348 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2250333003 Cr-Commit-Position: refs/heads/master@{#412533}
-
siva.gunturi authored
This test used testharness.js instead of js-test.js in server-side-imagemap and webgl-teximage2d. BUG=637859 Review-Url: https://codereview.chromium.org/2253513005 Cr-Commit-Position: refs/heads/master@{#412532}
-
sadrul authored
The last usage was removed in crrev.com/398655 when mojom events stopped being used. BUG=none Review-Url: https://codereview.chromium.org/2250273002 Cr-Commit-Position: refs/heads/master@{#412531}
-
peria authored
Its arguments list does not depend on the order and the index of '--'. This change enables us to update the .py file step by step. BUG=634231 Review-Url: https://codereview.chromium.org/2248363002 Cr-Commit-Position: refs/heads/master@{#412530}
-
guidou authored
TBR=mattm@chromium.org BUG=638557 Review-Url: https://codereview.chromium.org/2258453002 Cr-Commit-Position: refs/heads/master@{#412529}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/ca7ccf52377f..efd25f3722eb $ git log ca7ccf523..efd25f372 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2247773006 Cr-Commit-Position: refs/heads/master@{#412528}
-
chasej authored
Final cleanup and tests for supporting [OriginTrialEnabled] applied directly to a partial interface. BUG=585656 Review-Url: https://codereview.chromium.org/2252763002 Cr-Commit-Position: refs/heads/master@{#412527}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/422310ddbe4d..bf63e616a67e $ git log 422310ddb..bf63e616a --date=short --no-merges --format='%ad %ae %s' 2016-08-17 egdaniel Add mssa configs for vulkan, and simple bug fix 2016-08-17 caryclark fix fuzz BUG=638496 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=robertphillips@google.com Review-Url: https://codereview.chromium.org/2256673002 Cr-Commit-Position: refs/heads/master@{#412526}
-
olka authored
Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/3cf1448..933964d $ git log 3cf1448..933964d --date=short --no-merges --format=%ad %ae %s 2016-08-17 danilchap@webrtc.org StartTimestamp generated randomly in RtpSender constructor instead of not-randomly at SetSendingState(true) Renamed to timestamp_offset_ to better match meaning of the variable. 2016-08-17 ehmaldonado@webrtc.org Fix get_landmines.py script. TBR= CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng BUG= Review-Url: https://codereview.chromium.org/2254703004 Cr-Commit-Position: refs/heads/master@{#412525}
-
iclelland authored
This is an interim step to handle FeaturePolicy-enabled features, before the three conditional feature flags (RuntimeEnabled, OriginTrialEnabled and FeaturePolicy) are eventually combined into a common 'Feature' attribute. BUG=638240 Review-Url: https://codereview.chromium.org/2247923004 Cr-Commit-Position: refs/heads/master@{#412524}
-
hbos authored
main-thread DCHECKs from their destructors. CreateSessionDescriptionRequest and SetSessionDescriptionRequest are reference counted and have callback methods that are invoked on the signaling thread. If invoked on a non-main thread a post occurs to the main thread, referencing the object until the callback has completed on the main thread. There was an incorrect assumption that the object would also be destroyed on the main thread. But because the callback may sometimes complete before the signaling thread has had an opportunity to dereference the object it can be destroyed on the signaling thread. This CL allows it to be destroyed on any thread. BUG=634342 Review-Url: https://codereview.chromium.org/2222553002 Cr-Commit-Position: refs/heads/master@{#412523}
-
j.isorce authored
Make GpuProcess.driver_bug_workarounds_upon_gl_renderer and GpuProcess.no_gpu_process work on Android. For other tests it does not make sense to run them on Android because there is either no entry in kSoftwareRenderingListJson to trigger or no multi gpu configuration. About GpuProcess.skip_gpu_process, I could not reproduce the failure on Nexus 4. BUG=611930 R=kbr@chromium.org TEST=./content/test/gpu/run_gpu_test.py gpu_process --browser android-content-shell CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Committed: https://crrev.com/a2c5030470e9cee3ae35dc849c680530c2acf06a Committed: https://crrev.com/b34180e4f1fb9d4813b1e88984d288bd50b05751 Review-Url: https://codereview.chromium.org/2227893005 Cr-Original-Original-Commit-Position: refs/heads/master@{#410998} Cr-Original-Commit-Position: refs/heads/master@{#411213} Cr-Commit-Position: refs/heads/master@{#412522}
-
srirama.m authored
BUG=588956 Review-Url: https://codereview.chromium.org/2235333005 Cr-Commit-Position: refs/heads/master@{#412521}
-
eseckler authored
This is a follow up to crrev.com/2175163005, which hides composited native scrollbars. BUG=617618 Review-Url: https://codereview.chromium.org/2239313002 Cr-Commit-Position: refs/heads/master@{#412520}
-
olivierrobin authored
BUG=633099 Review-Url: https://codereview.chromium.org/2254603003 Cr-Commit-Position: refs/heads/master@{#412519}
-
vollick authored
BUG=430155 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2254623002 Cr-Commit-Position: refs/heads/master@{#412518}
-
charliea authored
BUG=638367 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.perf:android_s5_perf_cq;master.tryserver.chromium.perf:linux_perf_cq;master.tryserver.chromium.perf:mac_retina_perf_cq;master.tryserver.chromium.perf:winx64_10_perf_cq Review-Url: https://codereview.chromium.org/2256473002 Cr-Commit-Position: refs/heads/master@{#412517}
-
guidou authored
TBR=rsleevi@chromium.org BUG=638576 Review-Url: https://codereview.chromium.org/2255753002 Cr-Commit-Position: refs/heads/master@{#412516}
-
jonross authored
Convert the context menu of TaskManagerView to use the ASYNC menu runtype. TEST=manual testing, ran TaskManagerViewTests BUG=557136 Review-Url: https://codereview.chromium.org/2253683003 Cr-Commit-Position: refs/heads/master@{#412515}
-
lizeb authored
BUG=631966 Review-Url: https://codereview.chromium.org/2237453002 Cr-Commit-Position: refs/heads/master@{#412514}
-
kdsilva authored
BUG=635581 Review-Url: https://codereview.chromium.org/2222163005 Cr-Commit-Position: refs/heads/master@{#412513}
-
mlamouri authored
Otherwise, we end up autoplaying unmuted. BUG=627451 R=zqzhang@chromium.org Review-Url: https://codereview.chromium.org/2250393002 Cr-Commit-Position: refs/heads/master@{#412512}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/d69d22b2..e5e6dcc8 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2255643003 Cr-Commit-Position: refs/heads/master@{#412511}
-
lizeb authored
In Custom Tabs, an external application can "warm up" Chrome. This creates and initializes a spare renderer, and has been found to be a significant optimization for loading performance. This patch moves the spare renderer logic out of Custom Tabs, and makes it accessible and useful for regular navigations in Chrome. Note that this patch doesn't add new call sites for the spare renderer creation. BUG=633964 Review-Url: https://codereview.chromium.org/2199393002 Cr-Commit-Position: refs/heads/master@{#412510}
-
olivierrobin authored
BUG=623096 TEST=None Review-Url: https://codereview.chromium.org/2253613002 Cr-Commit-Position: refs/heads/master@{#412509}
-
olka authored
Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/ecae934..3cf1448 $ git log ecae934..3cf1448 --date=short --no-merges --format=%ad %ae %s 2016-08-17 kwiberg@webrtc.org FileRecorderImpl and FilePlayerImpl don't need their own .h and .cc files 2016-08-17 ossu@webrtc.org WebRtcVoiceEngine: Use AudioDecoderFactory to generate recv codecs. 2016-08-17 stefan@webrtc.org Don't simulate probing based on rtc event logs since we don't have that info logged. 2016-08-17 philipel@webrtc.org CongestionController::SetBweBitrates may now trigger probing. TBR= CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng BUG= Review-Url: https://codereview.chromium.org/2251023002 Cr-Commit-Position: refs/heads/master@{#412508}
-
ehmaldonado authored
that is failing. The idea is to recover some of the coverage that the other tests provide. BUG=625808 Review-Url: https://codereview.chromium.org/2241223002 Cr-Commit-Position: refs/heads/master@{#412507}
-
zqzhang authored
BUG=638532 Review-Url: https://codereview.chromium.org/2251013002 Cr-Commit-Position: refs/heads/master@{#412506}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e5312417..d69d22b2 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2249183004 Cr-Commit-Position: refs/heads/master@{#412505}
-
xiaochengh authored
This patch removes parameter |node| from the above mentioned function because it can always be computed as the root editable element of |insertedRange|. This patch is a preparation for reducing the use of TextCheckingParagraph in spell checker, since TextCheckingParagraph was introduced for synchronous spell checking which no longer exists now. BUG=619452 Review-Url: https://codereview.chromium.org/2241293006 Cr-Commit-Position: refs/heads/master@{#412504}
-
raphael.kubo.da.costa authored
The dependency on glib is only present because we need to call g_type_init(), but commit 9d47fa16 ("Add calls to g_type_init") has moved the call to ProxyConfigServiceLinux, which is what actually uses it. R=pauljensen@chromium.org,mmenke@chromium.org,xunjieli@chromium.org Review-Url: https://codereview.chromium.org/2240793003 Cr-Commit-Position: refs/heads/master@{#412503}
-
srirama.m authored
Cleaning appcache video http tests to use testharness.js instead of video-test.js. This will enable to upstream these tests to web-platform-tests. BUG=588956 Review-Url: https://codereview.chromium.org/2252663002 Cr-Commit-Position: refs/heads/master@{#412502}
-
siva.gunturi authored
1.Handle the test inside window.onload. 2.Change image src of same size. This triggers img.onload. 3.Check for no layout on src change. BUG=638288, 637859 Review-Url: https://codereview.chromium.org/2250323002 Cr-Commit-Position: refs/heads/master@{#412501}
-
keishi authored
BUG=591606 Review-Url: https://codereview.chromium.org/2210483002 Cr-Commit-Position: refs/heads/master@{#412500}
-
yhirano authored
BUG=587663 Review-Url: https://codereview.chromium.org/2250353002 Cr-Commit-Position: refs/heads/master@{#412499}
-
tommyt authored
This change enables the stopNotifications function for remote GATT characteristics on Android. In order to do so, two distinct refactorings have been done; 1) The session classes have been simplified so that platform specific versions are no longer required. All code that previously used BluetoothGattNotifySession[Mac|Win|BlueZ] now simply use the base BluetoothGattNotifySession class. 2) BluetoothRemoteGattCharacteristic::StartNotifySession and StopNotifySession have been rewritten so that all the code for keeping track of the different session objects and the notification state sits in the base class. Inheriting classes should no longer override these two functions, but instead override the much simpler SubscribeToNotifications and UnsubscribeFromNotifications. BUG=584370 Review-Url: https://codereview.chromium.org/2051333004 Cr-Commit-Position: refs/heads/master@{#412498}
-