- 23 May, 2014 33 commits
-
-
sergeyu@chromium.org authored
Chrome requires video streams to have even width and height, so MediaSource renderer didn't work properly for streams with odd width or height. Fixed it to round up dimensions and crop one column or one row when screen size is odd, using Matroska's CropRight and CropBottom attributes. BUG=321825 Review URL: https://codereview.chromium.org/291193008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272430 0039d316-1c4b-4281-b951-d872f2087c98
-
jvoung@chromium.org authored
Also enable mmap'ing the main nexe, which may help a bit in subsequent runs as well (first run the validator needs page in all of the text anyway). pnacl-llc.nexe, etc will be handled separately: https://codereview.chromium.org/224803002/ TEST=NaClBrowserTestVcacheExtension.ValidationCacheOfMainNexe BUG=https://code.google.com/p/nativeclient/issues/detail?id=3421 Review URL: https://codereview.chromium.org/263683002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272429 0039d316-1c4b-4281-b951-d872f2087c98
-
kpschoedel@chromium.org authored
Most tests (not having state) are converted to a table-driven form, so that multiple test operations can be done on the same test data. Additional tests based on X11 native events are done on these cases. The fallback X11 keycode to keysym mapping is expanded, because the X server used by some automated tests does not support some of the keycodes used by ChromeOS top-row special keys. R=sadrul@chromium.org Review URL: https://codereview.chromium.org/270633012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272428 0039d316-1c4b-4281-b951-d872f2087c98
-
lazyboy@chromium.org authored
This CL also removes BrowserPluginHostTest.HiddenBeforeNavigation, that was disabled under TSAN v2. BUG=368077, 370240 Test=None, internal only change. Review URL: https://codereview.chromium.org/281833003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272427 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This class provides Chrome-specific stability metrics, enabling moving code related to these metrics out of MetricsLog and MetricsService. It also eliminates all notification listening from MetricsService. As part of the latter change, ThreadWatcherObserver now registers explicitly for the notifications it is concerned with rather than going through MetricsService for this purpose. BUG=375237 Review URL: https://codereview.chromium.org/289283011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272426 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=374235 TEST=none R=asvitkine@chromium.org Review URL: https://codereview.chromium.org/291843008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272425 0039d316-1c4b-4281-b951-d872f2087c98
-
kkinnunen@nvidia.com authored
Command buffer command decoder is missing few early returns. Add early returns after error handling in glVertexAttribDivisorANGLE if no extension is present and glCopyTexImage2D if texture is immutable. BUG=373159 Review URL: https://codereview.chromium.org/285703005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272424 0039d316-1c4b-4281-b951-d872f2087c98
-
jochen@chromium.org authored
There's not much we can do about this, and ignoring the exception is better than hanging the thread. The minidump_stackwalk binary will just ignore modules for which it can't find symbols so not having some symbols isn't tragic. BUG=none R=thestig@chromium.org Review URL: https://codereview.chromium.org/294203002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272423 0039d316-1c4b-4281-b951-d872f2087c98
-
jackhou@chromium.org authored
The main change here is that web_app::GetWebAppDataDirectory is now being called on the UI thread. BUG=356889 Review URL: https://codereview.chromium.org/286933012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272422 0039d316-1c4b-4281-b951-d872f2087c98
-
andresantoso@chromium.org authored
Change sheet repositioning to be based on NSWindowDidResizeNotification, because it tracks window resizing much better than NSViewFrameDidChangeNotification. The modal sheet should now track the parent window's resizing much more smoothly. BUG=358627 Review URL: https://codereview.chromium.org/299573002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272421 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
This is caused by the problem that the minimized panel could still become a key window. We found out a way to deactivate a NSWindow correctly. BUG=365758 Review URL: https://codereview.chromium.org/275693002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272420 0039d316-1c4b-4281-b951-d872f2087c98
-
michaeln@chromium.org authored
Store the service worker script and its imports on first load, read them on subsequent loads. The list of resource ids is stored with registration data. As registrations are deleted the old resources are also deleted. BUG=364247,364318 Review URL: https://codereview.chromium.org/293483002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272418 0039d316-1c4b-4281-b951-d872f2087c98
-
felt@chromium.org authored
BUG=331452 R=palmer@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/299133002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272417 0039d316-1c4b-4281-b951-d872f2087c98
-
rogerta@chromium.org authored
disconnecting the profile. BUG=373861 Review URL: https://codereview.chromium.org/298753009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272415 0039d316-1c4b-4281-b951-d872f2087c98
-
miletus@chromium.org authored
Software mirroring mode is special that display_state is marked as DUAL_EXTENDED but it is doing mirroring. There is only one root window as supposed 2 root windows in the extended mode. Early return in UpdateTouchTransformer() for the software mirroring mode for now so as not to crash chrome. BUG=376459 TEST=arm devices don't crash while switching from extended to mirror mode. Review URL: https://codereview.chromium.org/287193014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272414 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
If ActiveTab permission is granted to an extension through a means other than ActiveScriptController, have ActiveScriptController run any pending tasks for that extension. BUG=362353 Review URL: https://codereview.chromium.org/296483011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272413 0039d316-1c4b-4281-b951-d872f2087c98
-
bradnelson@google.com authored
Whitelisting an extension per: crbug.com/374955 BUG=374955 TEST=None R=miket@chromium.org Review URL: https://codereview.chromium.org/293813002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272412 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
Revert of Fix and re-enable some browser focus interactive ui tests. (https://codereview.chromium.org/296523002/) Reason for revert: Tests failing on WinXP waterfall bot: 2 tests timed out: BrowserFocusTest.FocusTraversal BrowserFocusTest.FocusTraversalOnInterstitial Starting http://build.chromium.org/p/chromium.win/builders/XP%20Tests%20%281%29/builds/31296 Original issue's description: > Fix and re-enable some browser focus interactive ui tests. > > Fix FocusTraversal[OnInterstitial] except *OnInterstitial on Mac :( > Fix InterstitialFocus and FindFocusTest. > > Add a TestFocusTraversal helper function consolidated from tests. > Simplify TestInterstitialPage and add a WaitForInterstitial helper. > Move test server init to a common SetUpOnMainThread. > Remove unnecessary helpers and includes. > > TODO(followup): Fix more tests! > TODO(followup): s/DisableFindBarAnimationsDuringTesting/ScopedAnimationDurationScaleMode/? > > BUG=60973,62544,67301,81451,109770,163931 > TEST=Automated tests work and stay enabled... > R=sky@chromium.org > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=272259 TBR=sky@chromium.org,msw@chromium.org NOTREECHECKS=true NOTRY=true BUG=60973,62544,67301,81451,109770,163931 Review URL: https://codereview.chromium.org/299703018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272410 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272392 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272390 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
Updates the view manager sample app too.\ R=sky@chromium.org http://crbug.com/365012 Review URL: https://codereview.chromium.org/292813008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272389 0039d316-1c4b-4281-b951-d872f2087c98
-
guohui@chromium.org authored
BUG=375416 Review URL: https://codereview.chromium.org/293983019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272388 0039d316-1c4b-4281-b951-d872f2087c98
-
erikwright@chromium.org authored
BUG=365762,374995 Review URL: https://codereview.chromium.org/296053007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272387 0039d316-1c4b-4281-b951-d872f2087c98
-
prasadv@chromium.org authored
This benchmark runs the one pointed by webkit.org/perf/DoYouEvenBench/ BUG=365446 NOTRY=true Review URL: https://codereview.chromium.org/296213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272386 0039d316-1c4b-4281-b951-d872f2087c98
-
tsepez@chromium.org authored
This removes some NOTREACHED()s in the base class which may be reached when bad data comes along. Merely tally such so that it can be checked in the cases where we know it's "impossible". We also need to be more lenient about the results of reading from pipes. BUG=376173 Review URL: https://codereview.chromium.org/297833007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272385 0039d316-1c4b-4281-b951-d872f2087c98
-
ihf@chromium.org authored
This will make the test pass for now on the bots and prevent further regressions from the current state. BUG=chromium:373094, chromium:375554, chromium:375556, chrome-os-partner:29017, chrome-os-partner:28982 TEST=Ran locally on link, alex, nyan_big. NOTRY=true Review URL: https://codereview.chromium.org/296773003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272384 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
The GCM service will now be started when there is a consumer. It will be automatically stopped when all consumers are gone. This does not change the existing behavior that the GCM is always started for the signed-in profile since invalidation consumes it. BUG=356716 TEST=tests updated and new tests added TBR=kalman@chromium.org Review URL: https://codereview.chromium.org/296053011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272380 0039d316-1c4b-4281-b951-d872f2087c98
-
courage@chromium.org authored
Reason: build failure on Mac ASan 64 > Add UMA Counts for number of IPv4 and IPv6 interfaces detected for PeerConnection. > > R=sergeyu@chromium.org > BUG=N/A > > Review URL: https://codereview.chromium.org/299103002 TBR=mallinath@chromium.org Review URL: https://codereview.chromium.org/299843008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272379 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
BUG=373842 Review URL: https://codereview.chromium.org/291603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272378 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=170921 TEST=everything still works Review URL: https://codereview.chromium.org/81243003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272377 0039d316-1c4b-4281-b951-d872f2087c98
-
acolwell@chromium.org authored
BUG=372617 Review URL: https://codereview.chromium.org/296983006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272376 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=375401 TEST=none TBR=gbillock Review URL: https://codereview.chromium.org/296113012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272375 0039d316-1c4b-4281-b951-d872f2087c98
-
mallinath@chromium.org authored
R=sergeyu@chromium.org BUG=N/A Review URL: https://codereview.chromium.org/299103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272371 0039d316-1c4b-4281-b951-d872f2087c98
-
- 22 May, 2014 7 commits
-
-
kinaba@chromium.org authored
Now the multi-profile feature is turned on by default. Files.app also always mounts per-profile separated "Downloads" folder even in the test environment. BUG=375131 Review URL: https://codereview.chromium.org/295943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272370 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
R=darin@chromium.org Review URL: https://codereview.chromium.org/292353003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272369 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
On platforms which have an overlay scrollbar (namely Mac) the toolbar in OOP PDF appears to be too low to the bottom and right of the screen. This adds a minimum offset for the toolbar. BUG=303491 Review URL: https://codereview.chromium.org/293613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272367 0039d316-1c4b-4281-b951-d872f2087c98
-
courage@chromium.org authored
The chrome.identity.getAuthToken API now uses a totally separate dialog for displaying its permissions, so the ExtensionInstallDialog implementation can be deleted. BUG=304836 Review URL: https://codereview.chromium.org/290733006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272365 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
This bash is moderately archaic (version 3), and various tools (e.g. tput) are missing. This also modifies the ouput of the script so that in verbose mode, as it runs, each filename is trimmed to fit on one line, including the throbber, then replaced by the full filename when printing the final file status. This makes for a cleaner output spew with long filenames in particular. BUG=none TEST=none R=oshima@chromium.org Review URL: https://codereview.chromium.org/291153007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272364 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@google.com authored
CRYPTO_EXPORT macro has to be before the non-void return type. BUG=None TBR=rsleevi@chromium.org Review URL: https://codereview.chromium.org/296223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272363 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This enables some already-working targets and adds a missing cpufeatures dep to crypto to make it compile. I added a comment in the cpufeatures build file so I can find it more easily by grepping next time. R=cjhopman@chromium.org Review URL: https://codereview.chromium.org/291343002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272362 0039d316-1c4b-4281-b951-d872f2087c98
-