- 19 Feb, 2015 40 commits
-
-
hirono authored
BUG=410766 TEST=None Review URL: https://codereview.chromium.org/936243004 Cr-Commit-Position: refs/heads/master@{#317019}
-
mgiuca authored
BUG=459872 Review URL: https://codereview.chromium.org/935143005 Cr-Commit-Position: refs/heads/master@{#317018}
-
bartfab authored
When the affiliated invalidation service provider, it should: 1) unregister itself as an observer of various objects 2) tell consumers to stop using the current invalidation service 3) destroy the device-global invalidation service, if any Steps 2 and 3 were swapped. This meant that if the device-global invalidation service happened to be in use, it would be destroyed without giving consumers a chance to remove their handlers from it. BUG=455504 TEST=None Review URL: https://codereview.chromium.org/942463002 Cr-Commit-Position: refs/heads/master@{#317017}
-
wfh authored
This is because on Windows, we close some handles opened by Windows DLLs to prevent them from leaking into sandboxed processes, and this can cause INVALID_HANDLE_EXCEPTION to be raised if "bad handle detection" gflag is enabled, as it currently is by default on Windows 10. Only replace File and Event handles at the moment, as File handles are the ones causing the issues on Windows 10. BUG=452613 TEST=sbox_integration_tests TEST=Run Chrome on Windows 10 with crash reporting enabled, and check there are no crashes listed in chrome://crashes Review URL: https://codereview.chromium.org/919893002 Cr-Commit-Position: refs/heads/master@{#317016}
-
hirono authored
Audio player refers 'media.title' and 'media.artist' properties that are fetched by ContentMetadataProvider. Because these properties are not related with thumbnail, the CL moves ContentMetadataProvider to FileSystemMetadata for preparing to use new metadata class in Audio player. BUG=410766 TEST=FileManagerJsTest.FileSystemMetadata Review URL: https://codereview.chromium.org/932343003 Cr-Commit-Position: refs/heads/master@{#317015}
-
isherman authored
BUG=none TEST=none R=rogerta@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/898003002 Cr-Commit-Position: refs/heads/master@{#317014}
-
tapted authored
The world isn't quite ready for them.... BUG=459504 TBR=benwells@chromium.org,thestig@chromium.org Original patch from benwells; reviewed in http://crrev.com/938603002 Review URL: https://codereview.chromium.org/937843004 Cr-Commit-Position: refs/heads/master@{#317013}
-
tbarzic authored
If an extension printer does not declare support for PDF in its capabilities, convert print data to PWG raster before dispatching print request to the extension. BUG=408772 Review URL: https://codereview.chromium.org/919213002 Cr-Commit-Position: refs/heads/master@{#317012}
-
tapted authored
Extensions with background pages (e.g. Google Cast) currently have a shorter code path when showing an extension popup that can cause the renderer to ask for screen metrics before the hosting NSView is added to the view hierarchy. Since the NSWindow is nil in this case, screen metrics for the primary screen are used, and they may be the incorrect screen for the popup. On non-Mac, toolkit-views platforms get around this problem by deferring creation until View::ViewHierarchyChanged is triggered. However, there is no NSView apart from the render view on the extension-side on Mac, so to do the same we'd either need to add one (and keep it sized appropriately), or modify the WebContents view itself to override [NSView viewDid/WillMoveToSuperview] and feed it through to embedders. Instead, this CL tweaks the ExtensionPopupController initialization to always create the popup NSWindow (initially hidden), before creating the ExtensionViewHost. BUG=324748, 305620 TEST=On a retina mac, plug in a (non-retina) external monitor, move Chrome there, and open the Chromecast dialog. It should look "nice" (not as nice as the retina screen, but consistent with other text in Chrome). See http://crbug.com/324748#c41 Review URL: https://codereview.chromium.org/653843002 Cr-Commit-Position: refs/heads/master@{#317011}
-
falken authored
It may not be readily apparent how to the fix the error otherwise. BUG=457097 Review URL: https://codereview.chromium.org/939883002 Cr-Commit-Position: refs/heads/master@{#317010}
-
chrome://serviceworker-internalsfalken authored
Some users of the checkbox reported not expecting the SW to pause on startup. BUG=455708 Review URL: https://codereview.chromium.org/939763003 Cr-Commit-Position: refs/heads/master@{#317009}
-
malets authored
Add a test which covers the case of exporting all the keys and installing them back to fully bootstrap another cryptographer. Review URL: https://codereview.chromium.org/896313002 Cr-Commit-Position: refs/heads/master@{#317008}
-
yawano authored
BUG=459326 TEST=Manually tested as described in the issue. Review URL: https://codereview.chromium.org/913203007 Cr-Commit-Position: refs/heads/master@{#317007}
-
calamity authored
This CL makes the app list search results use the short names of apps to be consistent with the name shown in the apps grid view. BUG=456961 Review URL: https://codereview.chromium.org/918443002 Cr-Commit-Position: refs/heads/master@{#317006}
-
eugenis authored
BUG=459556 TBR=jyasskin@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/932253005 Cr-Commit-Position: refs/heads/master@{#317005}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#317004}
-
mgiuca authored
Placeholder strings should be sentence case (even when use_titlecase is enabled). This fixes the search box placeholder text which was missing "or type URL" in titlecase environments (because I forgot to update that version of the string). Also fixed some minor comma placement in some "Ok Google" strings. BUG=459537 TBR=cpu@chromium.org Review URL: https://codereview.chromium.org/919323003 Cr-Commit-Position: refs/heads/master@{#317003}
-
Daichi Hirono authored
BUG=None TEST=None TBR=smckay@chromium.org Review URL: https://codereview.chromium.org/937093002 Cr-Commit-Position: refs/heads/master@{#317002}
-
sunil.ratnu authored
While looking through the code, found some places where we are using pointers even though their values can be null. This patch adds null checks so as not to have any crashes due to pointer value being null. Review URL: https://codereview.chromium.org/924843002 Cr-Commit-Position: refs/heads/master@{#317001}
-
toyoshim authored
To handle device connection status, MidiManager and MidiMessageFilter hold all devices as a list. These lists are modified by event notifications that are delivered asynchronously. They do not remove disconnected devices, but just mark as disconnected. This is useful when JavaScript has a reference to a device that got disconnected. The reference can be availalbe if the device gets connected again. BUG=422333 TEST=media_unittests Review URL: https://codereview.chromium.org/662233002 Cr-Commit-Position: refs/heads/master@{#317000}
-
thakis authored
Revert of Now that the cq runs tests on rel, the compile-only bug should be dbg. (patchset #1 id:1 of https://codereview.chromium.org/937853002/) Reason for revert: Too many red builds on the dbg not, need to investigate tomorrow. Also, it does a static build for some reason. Original issue's description: > Now that the cq runs tests on rel, the compile-only bug should be dbg. > > Depends on https://codereview.chromium.org/913223007 > > BUG=456396 > TBR=sergiyb@chromium.org > > Committed: https://crrev.com/3d0efdf9afa56e55b8d8c62fd883a1992f35cf45 > Cr-Commit-Position: refs/heads/master@{#316998} TBR=jam@chromium.org,sergiyb@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=456396 Review URL: https://codereview.chromium.org/914023007 Cr-Commit-Position: refs/heads/master@{#316999}
-
thakis authored
Depends on https://codereview.chromium.org/913223007 BUG=456396 TBR=sergiyb@chromium.org Review URL: https://codereview.chromium.org/937853002 Cr-Commit-Position: refs/heads/master@{#316998}
-
kbr authored
Revert of Re-land: base: Enable browser-wide discardable memory on Linux, CrOS and Windows. (patchset #1 id:1 of https://codereview.chromium.org/793443003/) Reason for revert: Caused random crashes on GPU bots with this assertion failure: WebglConformance.conformance_ogles_GL_log_log_001_to_008: Error installing extension 'v8/gc'. [3060:3996:0218/193241:FATAL:discardable_shared_memory_heap.cc(205)] Check failed: spans_.find(span->start_ + span->length_ - 1) != spans_.end(). Original issue's description: > Re-land: base: Enable browser-wide discardable memory on Linux, CrOS and Windows. > > 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 > > Committed: https://crrev.com/2f7a8e80b83aa581aa6de86117a692093d16c217 > Cr-Commit-Position: refs/heads/master@{#316977} TBR=avi@chromium.org,danakj@chromium.org,reveman@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=429415,429416 Review URL: https://codereview.chromium.org/917023003 Cr-Commit-Position: refs/heads/master@{#316997}
-
Daichi Hirono authored
BUG=None TEST=None TBR=kenobi@chromium.org Review URL: https://codereview.chromium.org/942453003 Cr-Commit-Position: refs/heads/master@{#316996}
-
https://codereview.chromium.org/884483006/changwan authored
BUG=430635 Review URL: https://codereview.chromium.org/917213003 Cr-Commit-Position: refs/heads/master@{#316995}
-
fukino authored
Now that volumes other than Google Drive can be expanded in the directory tree, there is a case that subdirectories are queried befor the displayroot of volume is obtained. In this case, we should skip updating subdirectories. After the displayroot is obtained, updateSubDirectories will be called. BUG=459534 TEST=manually check the steps described in the issue. Review URL: https://codereview.chromium.org/940443003 Cr-Commit-Position: refs/heads/master@{#316994}
-
smckay authored
2) Don't show details header panel once user has completed import. 3) Introduce a local storage wrapper and make all existing importer uses of chrome.storage.local use this...much shorter and safer. 4) Auto-hide details panel when user clicks out. 5) Fix jank on the panel transition (and switch to vertical swoosh). BUG=420680 TEST=browser_test: FileManagerJsTest.* Review URL: https://codereview.chromium.org/925233004 Cr-Commit-Position: refs/heads/master@{#316993}
-
tapted authored
Undo and redo are mapped in a similar way to cut/copy/paste on Mac, via the mainMenu's performKeyEquivalent, and the Cocoa responder chain. This CL adds responders for undo: and redo: Single-character editing commands were not being merged into a single edit. For example, typing {'c', 'a', 't', Cmd+Z} would only undo the 't' not the entire 'cat'. This CL fixes by detecting single-character inserts in response to a keyDown event. Then, for "redo", some of the textfield unittests would send both Ctrl+Y and Ctrl+Shift+Z. Cmd+Y for undo isn't supported on Mac (it's mapped to History -> Show Full History). So a wrapper is added that just sends Cmd+Shfit+Z again. Gets the following tests passing: TextfieldTest.DragAndDrop_ToTheLeft TextfieldTest.DragAndDrop_ToTheRight TextfieldTest.UndoRedoTest BUG=454353 Review URL: https://codereview.chromium.org/923903002 Cr-Commit-Position: refs/heads/master@{#316992}
-
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}
-