- 10 Apr, 2014 40 commits
-
-
spang@chromium.org authored
This event code is all currently X11-specific. Remove it from the ChromeOS-on-Ozone build. BUG=361341 TEST=chrome --ozone-platform=test Review URL: https://codereview.chromium.org/226413008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262927 0039d316-1c4b-4281-b951-d872f2087c98
-
dfalcantara@chromium.org authored
* Limits the maximum size of the button, truncating text if it can't fit (yay for testing with languages that I didn't have translations for initially). * Stops an NPE that can trigger if the user uses the banner to install an app, uninstalls the app in the background, then returns to Chrome to open the app from the banner itself. BUG=359208,359199 Review URL: https://codereview.chromium.org/231273003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262926 0039d316-1c4b-4281-b951-d872f2087c98
-
mattm@chromium.org authored
BUG=338888 Review URL: https://codereview.chromium.org/201673006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262925 0039d316-1c4b-4281-b951-d872f2087c98
-
qyearsley@chromium.org authored
This version is a little bit different from the last; main differences: - I saw that the "CalculateBounds" was returning the minimum and maximum of the means of the input list, so I thought it would be easier to understand if this was done by mapping CalculateMean and then directly making a tuple with min/max. - Since CalculateTruncatedMean(xs, 0) is just the mean, and this is used in several place, I extracted out a convenience function CalculateMean. - CalculateConfidence doesn't refer to self, so I thought it was reasonable to move it up to be a top-level function with the other stats functions. BUG= Review URL: https://codereview.chromium.org/220113012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262924 0039d316-1c4b-4281-b951-d872f2087c98
-
spang@chromium.org authored
This fixes some build errors for the "chromeos=1 use_ozone=1" build. The code under ash/accelerators is currently only supported under X11. BUG=361341 TEST=chrome --ozone-platform=test Review URL: https://codereview.chromium.org/232133005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262923 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
It is really tough to use some 4K monitor from ChromeOS because the resolution is too high in comparison with the physical size. Better to use 2X mode in such case. BUG=348279 R=oshima@chromium.org TEST=manually Review URL: https://codereview.chromium.org/227593011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262922 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
This can happen after the account_chooser_model has been changed to the new data source but before all the suggestions have been updated. In this small amount of time we snapshot SECTION_CC_BILLING while the account chooser doesn't have wallet selected. R=estade@chromium.org BUG=361321 Review URL: https://codereview.chromium.org/229593002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262921 0039d316-1c4b-4281-b951-d872f2087c98
-
tsepez@chromium.org authored
I stumbled across this while trying to pass int16's into javascript. This looks like a simple omission. R=viettrungluu@chromium.org BUG= Review URL: https://codereview.chromium.org/231743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262920 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
This fixes two compilation errors found while building with gcc 4.8.2: 1- unused variable 'orig_bak_files' [-Werror=unused-variable] 2- comparison between signed and unsigned integer expressions [-Werror=sign-compare] BUG=361857 TEST=ninja -C out/Debug_gn TBR=brettw@chromium.org,dgrogan@chromium.org Review URL: https://codereview.chromium.org/226413009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262919 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
Oops, I inverted the condition. R=sky@chromium.org TBR=sky@chromium.org BUG=360081 Review URL: https://codereview.chromium.org/225863008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262918 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
This is a refactoring of the code in pdf.js, moving the code into a PDFViewer object. This will make it more testable and usable by other classes that will be added later. BUG=303491 Review URL: https://codereview.chromium.org/223363002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262917 0039d316-1c4b-4281-b951-d872f2087c98
-
ccameron@chromium.org authored
BUG=361569 TBR=dgozman Review URL: https://codereview.chromium.org/232283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262916 0039d316-1c4b-4281-b951-d872f2087c98
-
mgiuca@chromium.org authored
This CL causes conflicts with my pending CL (https://codereview.chromium.org/224903022) that needs to be merged into M35. The safest way forward is to revert this, commit my CL, then re-land this, dealing with the merge conflicts. BUG=357049 > Remove title and icon from chrome apps native style title bars. > > These windows aren't meant to have titles or icons, but still need to > get a proper title as far as the OS is concerned. This means using a > custom but glass frame, similarly to how unthemed browser windows look. > > BUG=339558 > TEST=Try out frame:chrome app windows windows on Windows 7, 8 and XP. > Use the windows in various states (maximised, fullscreen, normal). > Make sure they work after switching in and out of aero mode. > > Review URL: https://codereview.chromium.org/213743017 Review URL: https://codereview.chromium.org/229343004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262915 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
Makes the naming consistent with AudioBuffer, which is helpful now that DecoderStream<T> enforces API consistency. TBR=dmichael Review URL: https://codereview.chromium.org/229453004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262914 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
Use the root view's height vs. the visible display frame instead of the screen height. This is because the window might not be the full size of the screen. BUG=251343 Review URL: https://codereview.chromium.org/229903003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262913 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
Previous patch was reverted because of flakiness. The main reason of the flakiness is a race like followings: 1. After renaming, Files.app commit the new file name previsionally. 2. Test regards as the rename was done and starts the next rename. 3. Previous rename was actually done in a file system and the file list is updated. It cancels the second rename. This patches add a marker for previsionally commitment, and let the test wait until the marker is removed. Previously reverted CL: crrev.com/221673002 BUG=345062 TEST=run the test. Review URL: https://codereview.chromium.org/230073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262912 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
This will break the behavior with the older version of the hotword, but actually that is fine because anyways the app-launcher hasn't worked well with the older version for other reasons. BUG=356873 R=xiyuan@chromium.org TEST=manually Review URL: https://codereview.chromium.org/229323003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262911 0039d316-1c4b-4281-b951-d872f2087c98
-
sammc@chromium.org authored
Currently, searches using the app launcher search box use the RLZ access point for the omnibox. With this change, the app launcher RLZ access point is used to construct url parameters for searches from the app launcher. BUG=332996 Review URL: https://codereview.chromium.org/228013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262910 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=347247 TEST=unit_tests R=guohui@chromium.org, rogerta@chromium.org Review URL: https://codereview.chromium.org/217883004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262909 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262906 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/231713002/tapted@chromium.org authored
Reason for revert: Compile errors on chromiumos builder [multiple cycles] due to https://src.chromium.org/viewvc/blink?revision=171165&view=revision /third_party/WebKit/Source/core/dom/CharacterData.cpp:146:36: error: 'realCount' may be used uninitialized in this function [-Werror=maybe-uninitialized] chromeos-chrome-36.0.1933.0_alpha-r1: newStr.remove(offset, realCount); link: http://build.chromium.org/p/chromium.chromiumos/builders/ChromiumOS%20%28x86%29/builds/20955 Original issue's description: > Blink roll 171141:171171 > > http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=171141:171171&mode=html > TBR= > BUG= > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=262863 TBR=yurys@chromium.org,jianli@chromium.org NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/232443002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262905 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262903 0039d316-1c4b-4281-b951-d872f2087c98
-
ccameron@chromium.org authored
When a GPU switch is detected, poison all browser-side GL contexts, which will cause them to be recreated. Make CompositorSwapBuffers destroy and recreate the GL context if it has been poisoned. Ensure that the CALayer for the old content remain in place until the new layer is in place and correctly sized, to avoid flickering. BUG=361493 Review URL: https://codereview.chromium.org/231863002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262901 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262900 0039d316-1c4b-4281-b951-d872f2087c98
-
rmcilroy@chromium.org authored
Pulls in change: https://gerrit.chromium.org/gerrit/#/c/69477/ BUG=354405,346626 Review URL: https://codereview.chromium.org/231283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262899 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@chromium.org authored
Removes AtomicRefCount checks from SincResampler and AudioOutputController which never caught any issues. BUG=295278, 349651 TEST=none Review URL: https://codereview.chromium.org/231623005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262897 0039d316-1c4b-4281-b951-d872f2087c98
-
jbudorick@chromium.org authored
BUG=361127 Review URL: https://codereview.chromium.org/231173003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262896 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
mod3 is the short name for ISO Level 5 shift, which is used by CA multilingual and German Neo2 keyboard layouts to allow support for a 4th shift state in addition to normal, shift, and AltGr. BUG=335368 Review URL: https://codereview.chromium.org/227893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262895 0039d316-1c4b-4281-b951-d872f2087c98
-
hclam@chromium.org authored
We would like to use more than 1 thread for encoding to improve performance. We do this only on a higher end system. The criteria is to have at least 3 logical processors. This has worked well for WebRTC and the same condition is applied here. BUG=360966 Review URL: https://codereview.chromium.org/228313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262894 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
Create an ExtensionErrorController to be in charge of ExtensionErrorUI so that ExtensionService doens't have to know as much about it. And, of course, add a few tests for otherwise untested behavior. BUG=351891 Review URL: https://codereview.chromium.org/227373007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262893 0039d316-1c4b-4281-b951-d872f2087c98
-
sandersd@chromium.org authored
BUG=122071 Review URL: https://codereview.chromium.org/224093011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262892 0039d316-1c4b-4281-b951-d872f2087c98
-
shuchen@chromium.org authored
BUG=353034 TEST=None Review URL: https://codereview.chromium.org/230873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262891 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@chromium.org authored
This addresses two bugs: * Updates from the Model should be ignored while an item is being added. * Folder deletions from the Model should be ignored since the model may not contain items that are not installed on the device, and we check for empty folders on item removal already. BUG=361671, 361721 Review URL: https://codereview.chromium.org/229233003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262890 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
Along the way, add DCHECKs to verify that user actions are always posted from the UI thread. BUG=360271 TEST=none R=asvitkine@chromium.org, avi@chromium.org Review URL: https://codereview.chromium.org/229873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262885 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=none TBR=pkasting@chromium.org Review URL: https://codereview.chromium.org/231833003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262884 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
It was on by default anyway, and I don't see a reason to keep this flag around any more. BUG=none R=isherman@chromium.org, thestig@chromium.org Review URL: https://codereview.chromium.org/197333008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262883 0039d316-1c4b-4281-b951-d872f2087c98
-
dmichael@chromium.org authored
BUG=345417 TBR=raymes Review URL: https://codereview.chromium.org/231643004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262882 0039d316-1c4b-4281-b951-d872f2087c98
-
haven@chromium.org authored
BUG=357663 Review URL: https://codereview.chromium.org/216333005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262881 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
This lets us also remove LayerTreeHost::AcquireLayerTextures and related scheduler things. BUG=337922 Review URL: https://codereview.chromium.org/227413011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262878 0039d316-1c4b-4281-b951-d872f2087c98
-
samuong@chromium.org authored
When launching chrome, allow new privileges so that chrome's setuid sandbox can run properly. This was recently set to false by default, and is causing problems with the Linux64/Linux32 chromedriver waterfall. https://src.chromium.org/viewvc/chrome?revision=262786&view=revision BUG= NOTRY=True Review URL: https://codereview.chromium.org/231813005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262877 0039d316-1c4b-4281-b951-d872f2087c98
-