- 19 Feb, 2015 40 commits
-
-
hirono authored
Previously Files.app uses @typedef for expressing metadata item. The CL introduces new class instead, for better compiler check. BUG=410766 TEST=None Review URL: https://codereview.chromium.org/939653002 Cr-Commit-Position: refs/heads/master@{#316991}
-
jbudorick authored
BUG= Review URL: https://codereview.chromium.org/923723004 Cr-Commit-Position: refs/heads/master@{#316990}
-
mukai authored
The current calculation assumes positions[0].x() is zero, a run may start with certain x-offset. It depends on the font settings. In that case, the entire run might be shifted horizontally. This is still really hard to be tested in the current code base, the x-offset value comes from the font settings. Let me leave the test for the further CL(s). BUG=456692 R=msw@chromium.org, ckocagil@chromium.org Review URL: https://codereview.chromium.org/923973003 Cr-Commit-Position: refs/heads/master@{#316989}
-
rouslan authored
Merge address_input_strings_translations.grdp into address_input_strings.grd to follow the conventions in other grd files. The translations were originally separated to use the Java widget from libaddressinput, which Chrome since stopped using. This change makes translation scripts more reliable. BUG=459791 Review URL: https://codereview.chromium.org/941503002 Cr-Commit-Position: refs/heads/master@{#316988}
-
kenobi authored
This restores a string that got accidentally removed in a recent CL. BUG=420680 Review URL: https://codereview.chromium.org/936963002 Cr-Commit-Position: refs/heads/master@{#316987}
-
dcastagna authored
BUG= Review URL: https://codereview.chromium.org/932003005 Cr-Commit-Position: refs/heads/master@{#316986}
-
kbr authored
BUG=459820 TBR=zmo@chromium.org Review URL: https://codereview.chromium.org/938793003 Cr-Commit-Position: refs/heads/master@{#316985}
-
abarth authored
When GL_VERSION is set to ES3, Skia assumes that various functions exist in its GL function table. This CL wires up those functions so that Skia can use gl_bindings_skia_in_process on devices that support ES3. One of these functions, glGetStringi, was missing from the autogen script, so I added it. R=kbr@chromium.org Review URL: https://codereview.chromium.org/940523003 Cr-Commit-Position: refs/heads/master@{#316984}
-
joedow authored
Adding a python script which will read in a GYP file, convert it to valid JSON, and then load it as a dictionary object. The script will take a set of parameters which will allow the caller to target a set of remoting apps and output a space delimited string containing the target property they are interested in. This output string will be used by other bash/python scripts in a future CL to make generating remoting apps simpler. BUG= Review URL: https://codereview.chromium.org/934253004 Cr-Commit-Position: refs/heads/master@{#316983}
-
garykac authored
This enables JScompile for Chromoting's browsertest code and fixes all of the reported errors. This cl also includes a few minor typos and jscompile inconsistencies in the non-test code. BUG= Review URL: https://codereview.chromium.org/927373005 Cr-Commit-Position: refs/heads/master@{#316982}
-
dcheng authored
This temporarily restores the original behavior. It'd be nice to use the more specific type, but some components of Blink are generating long data: URLs and passing them to WriteBookmark(), which causes the browser to kill the renderer. BUG=447094 Review URL: https://codereview.chromium.org/934373002 Cr-Commit-Position: refs/heads/master@{#316981}
-
sgurun authored
BUG=393291 Review URL: https://codereview.chromium.org/929393003 Cr-Commit-Position: refs/heads/master@{#316980}
-
aelias authored
In the GPU process, GpuMain can return, destroying the process and thread, before ChildProcessService.onDestroy (which calls ShutdownThread) runs, leaving g_child_thread invalid. Set it to null on ChildThreadImpl destructor and check for that. BUG=458868 Review URL: https://codereview.chromium.org/913203004 Cr-Commit-Position: refs/heads/master@{#316979}
-
danakj authored
This adds a new simpler method to ResourceProvider called CopyToResource and uses that instead. This removes TextureUploader from the path of most impl-side painting code. R=enne BUG=454575 Review URL: https://codereview.chromium.org/938893002 Cr-Commit-Position: refs/heads/master@{#316978}
-
reveman authored
This makes SHMEM implementation of discardable memory preferred over EMULATED implementation. This effectively makes SHMEM the implementation used by default on Linux, CrOS and Windows. SHMEM implementation of discardable memory gives the browser process control over the total amount of discardable memory used and allows us to enforce a global limit of 512MB across all renderers. BUG=429415,429416 Review URL: https://codereview.chromium.org/793443003 Cr-Commit-Position: refs/heads/master@{#316977}
-
estade authored
BUG=459688 Review URL: https://codereview.chromium.org/940723002 Cr-Commit-Position: refs/heads/master@{#316976}
-
kalman authored
BUG=430054 R=rockot@chromium.org Review URL: https://codereview.chromium.org/936123002 Cr-Commit-Position: refs/heads/master@{#316975}
-
jln authored
Discover the Zygote's PID properly when using the namespace sandbox. BUG=459724 Review URL: https://codereview.chromium.org/940603003 Cr-Commit-Position: refs/heads/master@{#316974}
-
navabi authored
Non-android bots will not have credentials to download SDK packages from Google Storage buckets. Thus, if a bot does not have credentials, the hook should print a warning and continue. BUG=459681 Review URL: https://codereview.chromium.org/940633003 Cr-Commit-Position: refs/heads/master@{#316973}
-
tedchoc authored
BUG=459642 Review URL: https://codereview.chromium.org/933343002 Cr-Commit-Position: refs/heads/master@{#316972}
-
dtseng authored
Revert of Reland #4: Ensure WebView notifies desktop automation on creation, (patchset #1 id:1 of https://codereview.chromium.org/940763002/) Reason for revert: Still flakes on bots. Original issue's description: > Reland #4: Ensure WebView notifies desktop automation on creation, destruction, and change > > Previous attempts: > https://codereview.chromium.org/880063002 > https://codereview.chromium.org/895623003/ > https://codereview.chromium.org/890013006/ > https://codereview.chromium.org/907973004/ > > This latest attempt removes the logic that reloads ChromeVox at the beginning of a test. > > Locally, under extremely heavy load, tests progressively ran slowe. The same copy of a test ran 1 second slower than a previous copy. Ultimately, this led to a timeout. > > With the above change, this no longer occurs and hopefully fixes the flakeyness. > > Change is located in chromevox_e2e_test_base.js. > > TBR=dmazzoni@chromium.org > > Committed: https://crrev.com/47cb3b3798d325f3083565a05a2dcdaee117c296 > Cr-Commit-Position: refs/heads/master@{#316950} TBR=dmazzoni@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/939853003 Cr-Commit-Position: refs/heads/master@{#316971}
-
skare authored
BUG=408152 Review URL: https://codereview.chromium.org/932293002 Cr-Commit-Position: refs/heads/master@{#316970}
-
zmo authored
BUG=429053 TEST=gpu_unittests R=piman@chromium.org Review URL: https://codereview.chromium.org/936183002 Cr-Commit-Position: refs/heads/master@{#316969}
-
erikchen authored
There's a bug in AppKit that causes Chrome to crash when users attempt to save or open a file. The code path that causes the crash is only hit by applications linked against OSX 10.7 SDK (or earlier). This CL registers a default value for the preference NSViewKeepLayersAround, which prevents this code path from being hit. The functional implications of changing the preference NSViewKeepLayersAround are minimal. BUG=428977 Review URL: https://codereview.chromium.org/941453002 Cr-Commit-Position: refs/heads/master@{#316968}
-
tsepez authored
Review URL: https://codereview.chromium.org/924803003 Cr-Commit-Position: refs/heads/master@{#316967}
-
pedrosimonetti authored
TBR=cpu BUG=458571 Review URL: https://codereview.chromium.org/930243007 Cr-Commit-Position: refs/heads/master@{#316966}
-
alancutter authored
This change makes tools/perf/page_sets/tough_animation_cases/resources/perftesthelper.js consistent with the Chromium Javascript style guide: - Fixed indentation - Added missing semicolon - Renamed file to be underscore separated Review URL: https://codereview.chromium.org/927583005 Cr-Commit-Position: refs/heads/master@{#316965}
-
tbansal authored
This change ensures that if a QUIC proxy is unreachable, then it is marked as bad. Allows chrome to retry the request with the next proxy instead of showing ERR_QUIC_PROTOCOL to user. BUG=459426 Review URL: https://codereview.chromium.org/936243002 Cr-Commit-Position: refs/heads/master@{#316964}
-
tommycli authored
BUG=458687, 403800 Review URL: https://codereview.chromium.org/929483004 Cr-Commit-Position: refs/heads/master@{#316963}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/830d38e..37a8479 TBR=yhirano@chromium.org,kbr@chromium.org Review URL: https://codereview.chromium.org/939843002 Cr-Commit-Position: refs/heads/master@{#316962}
-
creis authored
BUG=426953 TEST=See bug for repro steps. Review URL: https://codereview.chromium.org/913223009 Cr-Commit-Position: refs/heads/master@{#316961}
-
dfalcantara authored
Also deletes a bunch of comments that no longer apply and need to be rewritten. BUG=457413 Review URL: https://codereview.chromium.org/932263002 Cr-Commit-Position: refs/heads/master@{#316960}
-
anthonyvd authored
This is the first step in removing the flag entirely. BUG=457462 Review URL: https://codereview.chromium.org/931233004 Cr-Commit-Position: refs/heads/master@{#316959}
-
tbarzic authored
Moves creation of conversion_settings and bitmap_settings needed by PWGRasterConverter::Start to a place usable by code for handling extension printers. This will enable extension printer handler to reuse the code when converting pdf documents to PWG raster data. BUG=408772 TEST=existing tests Review URL: https://codereview.chromium.org/935673004 Cr-Commit-Position: refs/heads/master@{#316958}
-
raymes authored
The PDF viewer has 2 plugins associated with it. These are grouped correctly for Google Chrome but not for Chromium. This groups these plugins correctly for Chromium by updating the plugin metadata. BUG=459113 Review URL: https://codereview.chromium.org/931063002 Cr-Commit-Position: refs/heads/master@{#316957}
-
qinmin authored
SharedPreference.edit() creates a new editor. So calling this method twice creates 2 different editors. And the apply() call from the 2nd editor has no effect on the first editor. BUG=459403 Review URL: https://codereview.chromium.org/930303003 Cr-Commit-Position: refs/heads/master@{#316956}
-
enne authored
Property trees don't calculate lcd text settings on the main thread, so to move to them, these calculations need to move to the compositor thread. There's nothing tied to the main thread, other than only changing lcd text during a commit. This restriction avoids the pitfall of tile versions (i.e. changing out content in place with different settings) by only changing content and invalidating during a commit, which already waits for rasterization to occur before displaying that content. That restriction is satisfied by only updating lcd text on picture layers during an update on the sync tree on new frame numbers. Review URL: https://codereview.chromium.org/913203006 Cr-Commit-Position: refs/heads/master@{#316955}
-
mukai authored
- Usually, logical first segment should appear in the first line when multi-lined. This is the reported bug as crbug.com/458219 Therefore, TextRunHarfBuzz should be added to the line breaker in the logical order. - The segment order in a line is assumed as visual order, therefore it needs to be sorted. - Modified the test expectations which support this behavior. - Added new test cases to verify where exactly the segment is drawn. BUG=458219 R=msw@chromium.org, ckocagil@chromium.org TEST=gfx_unittests Review URL: https://codereview.chromium.org/924773002 Cr-Commit-Position: refs/heads/master@{#316954}
-
mgiuca authored
This means the grey text under the title, which usually explains what type the result is (e.g., "Google Search" or "Chrome Web Store"). BUG=450644 Review URL: https://codereview.chromium.org/935523002 Cr-Commit-Position: refs/heads/master@{#316953}
-
sergeyu authored
Clipboard is single-threaded, so Stop() is not useful there. Review URL: https://codereview.chromium.org/930403002 Cr-Commit-Position: refs/heads/master@{#316952}
-