- 11 Jan, 2017 40 commits
-
-
yunchao.he authored
https://chromium.googlesource.com/external/khronosgroup/webgl.git/+log/046d1f6..06ad9fd BUG= TEST=bots CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2626963002 Cr-Commit-Position: refs/heads/master@{#442962}
-
clamy authored
Currently we attempt to query RenderFrameDevToolsAgentHost::IsNetworkHandlerEnabled based on the frame that is navigating. However, there may not be a RenderFrameDevToolsAgentHost for a subframe that is navigating even though there is one for the top-level frame, where the NetworkHandler is active. This prevents from properly reporting headers in subframe navigations. BUG=551000 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2628593002 Cr-Commit-Position: refs/heads/master@{#442961}
-
dfalcantara authored
Problematically, new DownloadItems are created with no file name when a download first starts. This means that the DownloadHistoryItemWrapper is added to the wrong part of the FilePathsToDownloadItemsMap and can't be removed until the user re-opens Download Home, which correctly records the DownloadItem in the correct place. * Change the behavior so a download completion event also triggers the item to be added to the map -- this time with the correct file path. * Also make the FilePathsToDownloadItemsMap use a HashSet for its secondary data structure. It ends up slightly cleaner IMO. * Cleans up the StubbedProvider so that it can take in specific download percentages more easily. * Add a new test for this behavior. BUG=670583 TEST=DownloadHistoryAdapterTest* Review-Url: https://codereview.chromium.org/2626903005 Cr-Commit-Position: refs/heads/master@{#442960}
-
Jamie Madill authored
These tests were probably accidentally dropped some time ago. BUG=angleproject:1385 R=eyaich@chromium.org TBR=dtu@chromium.org, eyaich@chromium.org Review-Url: https://codereview.chromium.org/2625933003 . Cr-Commit-Position: refs/heads/master@{#442959}
-
sdefresne authored
In preparation of the removal of BrowserListIOS, implements free function to maintain explicitly the 1:N mapping from ios::ChromeBrowserState to TabModel. BUG=None Review-Url: https://codereview.chromium.org/2621083003 Cr-Commit-Position: refs/heads/master@{#442958}
-
byungchul authored
ENABLED_SCREEN_CAPTURE is not flag to enable DesktopCaptureDevice. It enables DesktopCaptureDeviceAura (if use_aura=1). Use BUILDFLAG(ENABLE_WEBRTC) instead of ENABLED_SCREEN_CAPTURE to use DesktopCaptureDevice in VidepCaptureManager. BUG=internal b/34176576 Review-Url: https://codereview.chromium.org/2625553003 Cr-Commit-Position: refs/heads/master@{#442957}
-
kylechar authored
Running mustash on device currently crashes on startup. This is because ui::Service doesn't create a TaskScheduler before Ozone DRM uses it. One option is to have ui::Service::OnStart() create a TaskScheduler. If other Mojo applications need a task scheduler they'll have to do the same. Instead, have MashRunner start a TaskRunner for each process. This fixes the crash in Ozone DRM and doesn't seem to cause any other problems. BUG=679840 Review-Url: https://codereview.chromium.org/2621153003 Cr-Commit-Position: refs/heads/master@{#442956}
-
sadrul authored
The gpu host should set up GpuPreferences correctly and send that to the gpu process so that GpuService is initialized with the desired settings. The corresponding chrome-ipc, GpuMsg_Initialize, also includes the GpuPreferences. Also includes a build fix for mac. BUG=643746, 630895 Review-Url: https://codereview.chromium.org/2627993002 Cr-Commit-Position: refs/heads/master@{#442955}
-
michaeldo authored
BUG=none Review-Url: https://codereview.chromium.org/2619483002 Cr-Commit-Position: refs/heads/master@{#442954}
-
fdoray authored
The following traits are used: Priority: Inherited (default) The priority is inherited from the calling context (i.e. TaskTraits are initialized with the priority of the current task). Shutdown behavior: CONTINUE_ON_SHUTDOWN Tasks posted with this mode which have not started executing before shutdown is initiated will never run. Tasks with this mode running at shutdown will be ignored (the worker will not be joined). Note: Tasks that were previously posted to base::WorkerPool should use this shutdown behavior because this is how base::WorkerPool handles all its tasks. May Block: Tasks posted with MayBlock() may block. This includes but is not limited to tasks that wait on synchronous file I/O operations: read or write a file from disk, interact with a pipe or a socket, rename or delete a file, enumerate files in a directory, etc. This trait isn't required for the mere use of locks. BUG=659191 Review-Url: https://codereview.chromium.org/2604923002 Cr-Commit-Position: refs/heads/master@{#442953}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/f4faccd3b303..a5494f117086 $ git log f4faccd3b..a5494f117 --date=short --no-merges --format='%ad %ae %s' 2017-01-10 halcanary SkTypes.h : move SkAutoMalloc into SkAutoMalloc.h 2017-01-10 brianosman Get latest ANGLE as of January 6, 2017 2017-01-10 msarett Add readPixels() tests for generator backed images Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=kjlubick@google.com Review-Url: https://codereview.chromium.org/2626073004 Cr-Commit-Position: refs/heads/master@{#442952}
-
zpeng authored
BUG=672933 Review-Url: https://codereview.chromium.org/2626933003 Cr-Commit-Position: refs/heads/master@{#442951}
-
bauerb authored
Setting android:visible="false" only seems to work on groups, not individual items. Review-Url: https://codereview.chromium.org/2621203004 Cr-Commit-Position: refs/heads/master@{#442950}
-
zqzhang authored
ImageDownloader does not return valid HTTP status code for local URLs. This CL removes the check for HTTP status code from MediaImageManager, so that it only checks for the list of downloaded to see if the image fetch succeeded or not. This CL also adds tests for verifying ImageDownloader returns correct results. BUG=679694 Review-Url: https://codereview.chromium.org/2625703002 Cr-Commit-Position: refs/heads/master@{#442949}
-
dcheng authored
WindowProxy for remote frames will soon use remote contexts to avoid the overhead of instantiating a full v8::Context. As preparation, separate the logic for WindowProxy into LocalFrame and RemoteFrame versions to make it obvious what's used in each path. To avoid adding virtual calls to the fast path, common members such as the lifecycle state and the global proxy have been moved to the base class. When the WindowProxy is already initialized, this avoids the cost of any virtual calls. Future CLs will: - Convert RemoteWindowProxy to use v8::Context::NewRemoteContext - Merge LocalWindowProxyManager back into ScriptController - Clean up the interface for transferring global objects - Clean up the layering between WindowProxy and its subclasses BUG=527190 Review-Url: https://codereview.chromium.org/2620313002 Cr-Commit-Position: refs/heads/master@{#442948}
-
dbeam authored
R=dschuyler@chromium.org BUG=673953 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2617533003 Cr-Commit-Position: refs/heads/master@{#442947}
-
foolip authored
BUG=679420 TBR=sadrul@chromium.org Review-Url: https://codereview.chromium.org/2626823005 Cr-Commit-Position: refs/heads/master@{#442946}
-
alexilin authored
Current version of python sqilte3 library hasn't support of views. But new sqlite3 binary used in chrome implicitly creates MmapStatus view everytime that causes incompatibility problem. This workaround creates a temporary copy of given database and deletes the view through sqlite3 command line tool that has support of views. BUG=631966 Review-Url: https://codereview.chromium.org/2620053002 Cr-Commit-Position: refs/heads/master@{#442945}
-
droger authored
The code was using "Prerender.PrefetchAge" instead of "PrefetchAge", reporting wrong names (e.g. "Prerender.omnibox_Prerender.PrefetchAge" instead of "Prerender.omnibox_PrefetchAge"). Review-Url: https://codereview.chromium.org/2620383002 Cr-Commit-Position: refs/heads/master@{#442944}
-
pmonette authored
The Win 10 promo is now skipped when the DefaultBrowserSettingEnabled group policy is disabled or the browser distribution does not allow Chrome to be set as the default browser. BUG=679816 Review-Url: https://codereview.chromium.org/2625793002 Cr-Commit-Position: refs/heads/master@{#442943}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/1d093723..d1d93c3a 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_trusty_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/2627913002 Cr-Commit-Position: refs/heads/master@{#442942}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/8b10e7828ad2..7863f77ca84e $ git log 8b10e7828..7863f77ca --date=short --no-merges --format='%ad %ae %s' 2017-01-11 perezju [devil] Add device.RemovePath method 2017-01-11 sullivan Create debug dialog for data stoppage alerts. Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2627713003 Cr-Commit-Position: refs/heads/master@{#442941}
-
michaeldo authored
BUG=579264 Review-Url: https://codereview.chromium.org/2616843002 Cr-Commit-Position: refs/heads/master@{#442940}
-
peria authored
on V8{Window,HTMLDocument,Document,Node,EventTarget}. It installs runtime enabled features on instances, and its use case is limited to those classes. BUG=617892 Review-Url: https://codereview.chromium.org/2622153002 Cr-Commit-Position: refs/heads/master@{#442939}
-
danakj authored
When a const variable is initialized by another variable, we recurse to see if that variable is compile-time-const to decide if the former variable is. BUG=677285 Review-Url: https://codereview.chromium.org/2624253002 Cr-Commit-Position: refs/heads/master@{#442938}
-
ericrk authored
Currently, ResourcePool queues up idle resource deletion 1 second after last use. This means that the resource may be deleted after the main context becomes completely idle, and no further frames are bein produced. In order to ensure that these deletions are propogated to the GPU process, this change introduces a shallow flush after the last freeable resource is deleted by the ResourcePool. BUG=671256 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Review-Url: https://codereview.chromium.org/2607033002 Cr-Commit-Position: refs/heads/master@{#442937}
-
danakj authored
This fixes cases where a templated method accesses a member on its class object, and cases where a function argument is templated and used as the input to a const variable. R=dcheng@chromium.org BUG=677285 Review-Url: https://codereview.chromium.org/2622003002 Cr-Commit-Position: refs/heads/master@{#442936}
-
fs authored
Less stale expectations (DRT format changes.) TBR=schenney@chromium.org NOTRY=true BUG=639147 Review-Url: https://codereview.chromium.org/2628893002 Cr-Commit-Position: refs/heads/master@{#442935}
-
lhchavez authored
This change adds getters for individual ArcServices from ArcServiceManager. This prevents ArcServiceManager::Observer from becoming a place to put random stuff to observe that would be better suited for individual services to expose. BUG=672840 TEST=git cl try Review-Url: https://codereview.chromium.org/2622843002 Cr-Commit-Position: refs/heads/master@{#442934}
-
torne authored
WebView now generates NativeLibraries.java at runtime in the same way as all other Android APKs. Delete the unused pregenerated version. BUG= Review-Url: https://codereview.chromium.org/2620193003 Cr-Commit-Position: refs/heads/master@{#442933}
-
bzanotti authored
updateAccounts() now takes a callback to allow code to run once the accounts have actually been fetched. This also adds some check in updateAccounts() to ensure it only updates the accounts when expected (i.e. when the user isn't signed in). BUG=678543,672255 Review-Url: https://codereview.chromium.org/2616643005 Cr-Commit-Position: refs/heads/master@{#442932}
-
bnc authored
Change SpdyFrameBuilder::BeginNewFrame() not to use OverwriteLength(). Proteced by FLAGS_chromium_http2_flag_remove_rewritelength. This CL lands server change 143445916 by yasong. BUG=488484 Review-Url: https://codereview.chromium.org/2611293002 Cr-Commit-Position: refs/heads/master@{#442931}
-
gavinp authored
Fix typo in cache perftests. BUG=none R=jkarlin@chromium.org Review-Url: https://codereview.chromium.org/2622013002 Cr-Commit-Position: refs/heads/master@{#442930}
-
chongz authored
https://crrev.com/2501083002/ introduce these mappings but mis-placed values, this CL swaps these values back. BUG=670587 Review-Url: https://codereview.chromium.org/2622893005 Cr-Commit-Position: refs/heads/master@{#442929}
-
avi authored
BUG=554289 Review-Url: https://codereview.chromium.org/2627433003 Cr-Commit-Position: refs/heads/master@{#442928}
-
stkhapugin authored
Since ARC code cannot refer to NSAutoreleasePool directly, before this change block_cleanup_test.h cannot be included from ARC-enabled code. With this change, the header lists block_cleanup_pool_ as id, which allows such includes. BUG=None Review-Url: https://codereview.chromium.org/2623233002 Cr-Commit-Position: refs/heads/master@{#442927}
-
bungeman authored
This moves SkFontMgr creation and use to owning pointers. BUG=skia:5077 Review-Url: https://codereview.chromium.org/2618443002 Cr-Commit-Position: refs/heads/master@{#442926}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/98822430907b..76a44dea3180 $ git log 988224309..76a44dea3 --date=short --no-merges --format='%ad %ae %s' 2017-01-11 dsinclair Cleaning up memory allocation in CXFA_FM2JSContext - IV Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2626083002 Cr-Commit-Position: refs/heads/master@{#442925}
-
bnc authored
This CL lands server changes 143452565 by birenroy and 143815813 by bnc. BUG=488484 Review-Url: https://codereview.chromium.org/2611173004 Cr-Commit-Position: refs/heads/master@{#442924}
-
cjgrant authored
The omnibox drops slightly when fading. Previously, the omnibox was moved by adjusting its CSS margins. This is an inefficient way to handle movement (it wastes space and doesn't always appear smooth). BUG=641508 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2622593003 Cr-Commit-Position: refs/heads/master@{#442923}
-