- 05 Oct, 2016 12 commits
-
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/a1ec1d60129d55b93340a46b2bb389b86ea2fb95 Add gen/ui to generated bindings paths (rockot@chromium.org) https://crrev.com/6b5d14dc03df1b90ff9794d0887a491b2c7bad6c [android] Support not passing --adb-path. (jbudorick@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=652250,652761 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2396713002 Cr-Commit-Position: refs/heads/master@{#423020}
-
maxbogue authored
ModelTypeController simply takes a model thread into its constructor and treats the UI thread the same as any other. This CL contains significant cleanup of the test file as well, which contains all the test cases from NonUiModelTypeControllerTest and NonBlockingDataTypeControllerTest: - It no longer uses the real SharedModelTypeProcessor implementation. - It no longer pretends to have a sync thread that's really just the UI thread. - There's a private section to make it clear which pieces are internal. - A better TestBackendDataTypeConfigurer with no MockSyncBackend. Note that ModelTypeProcessorProxy was promoted to its own file in order to implement TestModelTypeProcessor elegantly. BUG=652398 Review-Url: https://codereview.chromium.org/2384153004 Cr-Commit-Position: refs/heads/master@{#423019}
-
skym authored
BUG= Review-Url: https://codereview.chromium.org/2379993006 Cr-Commit-Position: refs/heads/master@{#423018}
-
qyearsley authored
I believe that after http://crrev.com/2276713002, invoking webkit-patch with --help rather than help was broken. When `webkit-patch help` is invoked, the codepath that's used goes through the execute method of HelpCommand, and the _tool attribute is set, so it worked. But when --help is passed, a different codepath is used, that goes through optparse which directly uses HelpCommand.help_epilog and the _tool attribute was never set. This CL fixes this case by setting the _tool attribute in the constructor of HelpCommand. Review-Url: https://codereview.chromium.org/2385373003 Cr-Commit-Position: refs/heads/master@{#423017}
-
einbinder authored
BUG=none Review-Url: https://codereview.chromium.org/2390933003 Cr-Commit-Position: refs/heads/master@{#423016}
-
thakis authored
BUG=563793 Review-Url: https://codereview.chromium.org/2390773004 Cr-Commit-Position: refs/heads/master@{#423015}
-
suzyh authored
BUG=563793 Review-Url: https://codereview.chromium.org/2391893006 Cr-Commit-Position: refs/heads/master@{#423014}
-
nparker authored
BUG=652907 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2393703003 Cr-Commit-Position: refs/heads/master@{#423013}
-
jbudorick authored
BUG=651984 Review-Url: https://codereview.chromium.org/2385673005 Cr-Commit-Position: refs/heads/master@{#423012}
-
yhirano authored
BUG=603396 Review-Url: https://codereview.chromium.org/2390983002 Cr-Commit-Position: refs/heads/master@{#423011}
-
lambroslambrou authored
Added yuweih@. Review-Url: https://codereview.chromium.org/2391003003 Cr-Commit-Position: refs/heads/master@{#423010}
-
dpapad authored
BUG=651513 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2384273005 Cr-Commit-Position: refs/heads/master@{#423009}
-
- 04 Oct, 2016 28 commits
-
-
xing.xu authored
BUG=603928 R=skobes@chromium.org, cbiesinger@chromium.org Review-Url: https://codereview.chromium.org/2373963002 Cr-Commit-Position: refs/heads/master@{#423008}
-
avi authored
BUG=555865 Review-Url: https://codereview.chromium.org/2389583002 Cr-Commit-Position: refs/heads/master@{#423007}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/ea00e6ba38cf..d561772ce644 $ git log ea00e6ba3..d561772ce --date=short --no-merges --format='%ad %ae %s' 2016-10-04 aiolos Update desktop stable Chrome reference builds. 2016-10-04 robertocn Missing import for compare_samples executable script. 2016-10-04 aiolos Update the used canary/dev Chrome reference builds. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2396683002 Cr-Commit-Position: refs/heads/master@{#423006}
-
bshe authored
The original CL is here: https://codereview.chromium.org/2367673002/ It was reverted because of compile failure with gn flags: is_debug=false is_component_build=true target_os="android" The reason is gvr uses API that only available in Android N SDK. For release build, proguard detected the dependancy and results a compile error. N SDK is in the process of rolling to chromium https://codereview.chromium.org/2350013004/ In this CL, I restricted WebVr to debug build only. This could unblock us. And I will remove the is_debug restriction once N is in Chromium BUG=389343 TBR=dtrainor@ Review-Url: https://codereview.chromium.org/2396663002 Cr-Commit-Position: refs/heads/master@{#423005}
-
joedow authored
This change adds the ability to scroll the desktop canvas out from under any visible System UI. When System UI is displayed (for Kitkat and higher) the TouchInputHandler instance is called with the state/sizes of the System UI per edge of the screen. These values are passed to the DesktopCanvas instance which uses them for determining whether the System UI overlaps with the remote image content. If there is overlap then it adjusts the region of valid cursor and viewport positions which then allows the user to pan the content out from 'under' the System UI which is obscuring it.allowable position of the viewport. When the System UI disappears (or changes size), the current amount of padding, if any, is used as the new boundary. This prevents a jarring translation from occuring when the System UI changes size. BUG=621633 Review-Url: https://codereview.chromium.org/2375113003 Cr-Commit-Position: refs/heads/master@{#423004}
-
martiniss authored
BUG=639530 Review-Url: https://codereview.chromium.org/2394623003 Cr-Commit-Position: refs/heads/master@{#423003}
-
eae authored
BUG=563793 TBR=pilgrim@chromium.org Review-Url: https://codereview.chromium.org/2392153002 Cr-Commit-Position: refs/heads/master@{#423002}
-
khushalsagar authored
1) Split the inputs and rest of the fields in the protos so we only serialize the inputs for the new serialization code. 2) Add a CompositorStateDeserializer to deserialize compositor protos. BUG=648442 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2375363002 Cr-Commit-Position: refs/heads/master@{#423001}
-
luoe authored
This renames useArrayPreviewFormatter() to usePrintedArrayFormatter() and removes its override in ConsoleCommandResult Review-Url: https://codereview.chromium.org/2373203002 Cr-Commit-Position: refs/heads/master@{#423000}
-
panicker authored
BUG=635596 Review-Url: https://codereview.chromium.org/2383413002 Cr-Commit-Position: refs/heads/master@{#422999}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/98151cab3d24..4d29e78fc802 $ git log 98151cab3..4d29e78fc --date=short --no-merges --format='%ad %ae %s' 2016-10-04 dsinclair Rename fpdfsdk/fpdfxfa files to match contents TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2389983004 Cr-Commit-Position: refs/heads/master@{#422998}
-
luoe authored
This CL separates table formatting logic from the rest. Tables may produce only a single SortableDataGrid that is stored on the ConsoleViewMessage. Review-Url: https://codereview.chromium.org/2373113003 Cr-Commit-Position: refs/heads/master@{#422997}
-
horo authored
I'd like to use Mojo to send navigation preload response (crbug.com/649558) from the browser process to the service worker. But currently we are using the legacy IPC when the browser process sends the FetchEvent to the service worker. There will be an ordering issue if we use both the legacy IPC and Mojo IPC. To avoid the ordering issue, this CL changes the FetchEvent IPC to use Mojo. BUG=629701,649558 Review-Url: https://codereview.chromium.org/2352173004 Cr-Commit-Position: refs/heads/master@{#422996}
-
brettw authored
GN writes a Ninja command to re-invoke GN when a build file changes. Previously this hardcoded the build directory. But if the user renames the build directory, Ninja will think the files are out of date but GN will keep regenerating files in another directory. This changes the directory to "." because Ninja will invoke all commands with the build directory as the current one. BUG=639965 Review-Url: https://codereview.chromium.org/2389133003 Cr-Commit-Position: refs/heads/master@{#422995}
-
derat authored
Rename IntentHandlerInfo's ActionType field from "action" to "action_type" and add a new string "action" field. Update Chrome to use the enum field's new name. In the IntentHelperInstance interface, also rename HandleUrlList and HandleUrlListDeprecated's ActionType parameters from "action" to "action_type". The method signatures remain unchanged. BUG=647802 Review-Url: https://codereview.chromium.org/2396633002 Cr-Commit-Position: refs/heads/master@{#422994}
-
tkent authored
For the following changes: https://codereview.chromium.org/2390543002/ https://codereview.chromium.org/2390563002/ BUG=563793 NOTRY=true Review-Url: https://codereview.chromium.org/2386973002 Cr-Commit-Position: refs/heads/master@{#422993}
-
mbrunson authored
The original implementation of bindProxy in Mojo connection requires a callback in order to receive the proxy for the remote interface. This pattern is counterintuitive and unnecessary. A new function that doesn't require a callback has been added here. Review-Url: https://codereview.chromium.org/2389303002 Cr-Commit-Position: refs/heads/master@{#422992}
-
luoe authored
This CL splits parts of _formatMessage() into the following functions: _buildMessage(), _buildAnchor(), and _wrapStackTraceFormatting(). The only functional change should be that messageElement is now a text node wrapped in a span, similar to every other messageElement. Review-Url: https://codereview.chromium.org/2378493002 Cr-Commit-Position: refs/heads/master@{#422991}
-
thakis authored
BUG=563793 Review-Url: https://codereview.chromium.org/2389883005 Cr-Commit-Position: refs/heads/master@{#422990}
-
estade authored
BUG=648351 Review-Url: https://codereview.chromium.org/2396603002 Cr-Commit-Position: refs/heads/master@{#422989}
-
yuweih authored
This CL separates the core that lives entirely on the display thread from JniGlDisplayHandler so that the thread model can be clearer. BUG=646116 Review-Url: https://codereview.chromium.org/2389463002 Cr-Commit-Position: refs/heads/master@{#422988}
-
enne authored
ScaleToEnclosingRect DCHECKS that the scale that's being done won't overflow, however this can't be known because the scrollbar's internal scale is determined by page content. Clamp these values safely instead of DCHECKing. R=danakj@chromium.org BUG=652604 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2384063007 Cr-Commit-Position: refs/heads/master@{#422987}
-
kcarattini authored
The SB blacklist will contain information at the origin level so we shouldn't waste resources checking longer paths. BUG=561867,647107,543161 Review-Url: https://codereview.chromium.org/2391933002 Cr-Commit-Position: refs/heads/master@{#422986}
-
thakis authored
BUG=563793 TBR=haraken Review-Url: https://codereview.chromium.org/2396573002 Cr-Commit-Position: refs/heads/master@{#422985}
-
rnephew authored
Revert of perf: Disable battor.tough_video_cases on Mac as it is failing consistenly (patchset #1 id:1 of https://codereview.chromium.org/2380783003/ ) Reason for revert: BattOr SD Card was replaced. Original issue's description: > perf: Disable battor.tough_video_cases on Mac as it is failing consistenly > > BUG=650411 > 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 > TBR=alexclarke@chromium.org > NOTRY=true > > Committed: https://crrev.com/842ccca9d542b2e7b98ed3b10e6d35061f682895 > Cr-Commit-Position: refs/heads/master@{#421891} TBR=alexclarke@chromium.org,skyostil@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=650411 Review-Url: https://codereview.chromium.org/2393673002 Cr-Commit-Position: refs/heads/master@{#422984}
-
sammc authored
BUG=645004 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2314573002 Cr-Commit-Position: refs/heads/master@{#422983}
-
fjhenigman authored
Without this, nothing is compiling ANGLE's Ozone back end. BUG=angleproject:1412 Review-Url: https://codereview.chromium.org/2385603002 Cr-Commit-Position: refs/heads/master@{#422982}
-
sammc authored
This adds origin_trial_os_whitelist to RuntimeEnabledFeatures. If set, an origin trial will only be available on the whitelisted OSes. BUG=635741 Review-Url: https://codereview.chromium.org/2249043002 Cr-Commit-Position: refs/heads/master@{#422981}
-