summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* libwebp: cherry-pick lossless signature check improvementjzern@chromium.org2013-10-022-6/+8
| | | | | | | | | | 92d47e4 improve VP8L signature detection by checking the version bits too BUG= Review URL: https://codereview.chromium.org/25563003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226447 0039d316-1c4b-4281-b951-d872f2087c98
* Change _ITERATOR_DEBUG_LEVEL to 1 on Release buildswfh@chromium.org2013-10-021-1/+15
| | | | | | | | | | | | VS2010 changed the default to 0 meaning weaker checks in our release builds. This commit changes it back again. BUG=289691 NOTRY=true Review URL: https://codereview.chromium.org/23464081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226446 0039d316-1c4b-4281-b951-d872f2087c98
* Create ModeIndicatorControllerkomatsu@chromium.org2013-10-023-0/+110
| | | | | | | | | | This class is a controller of ModeIndicatorWidget. BUG=177765 Review URL: https://codereview.chromium.org/25670002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226445 0039d316-1c4b-4281-b951-d872f2087c98
* Add an Ethernet EAP policy.pneubeck@chromium.org2013-10-0212-44/+300
| | | | | | | | | | | | This is the last change required to enable the Ethernet EAP policy on ChromeOS. BUG=126870 (For preferences_browsertest.cc) TBR=nkostylev@chromium.org Review URL: https://codereview.chromium.org/23451044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226444 0039d316-1c4b-4281-b951-d872f2087c98
* Always tear down the OSX app list signin view, when the signin status changes.tapted@chromium.org2013-10-021-4/+3
| | | | | | | | | | | | | | | This improves a fix in r218251, after which the signinDelegate on the signin view would not be replaced when the model changes, but when both models were signed out. BUG=297437 TEST=Have the OSX App Launcher enabled and a single, signed out profile. Delete the profile from chrome://settings, then click sign in on the app launcher. Chrome should not crash. Review URL: https://codereview.chromium.org/25649004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226443 0039d316-1c4b-4281-b951-d872f2087c98
* [Android WebView] Use CUTOFF_ALLOW_NICE_TO_HAVEboliu@chromium.org2013-10-021-0/+3
| | | | | | | | | | | | | | | | | NICE_TO_HAVE will pre-render the soon-bin, which is based on both velocity and distance. Previously, EVERYTHING will also pre-render the eventually bin. NICE_TO_HAVE is a better fit for the Android WebView memory management model where we assume a webview will not go berserk with memory. Note that this can still fill up on fling. BUG= NOTRY=true Review URL: https://codereview.chromium.org/25648003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226442 0039d316-1c4b-4281-b951-d872f2087c98
* Will now DCHECK that test writers start the embedded server before using it.phoglund@chromium.org2013-10-023-0/+4
| | | | | | | | | | | | | | | | | | One developer on my team was writing a browser test, but the test would just hang. Turns out he forgot to start the embedded test server. I think we can make the failure a lot clearer by adding a DCHECK which will clearly point out the problem. I know that GetURL doesn't mean the test makes a request to the server as such, but the returned URL will almost always be fed into a NavigateToUrl request, so checking for this here will probably be helpful in almost all cases. R=phajdan.jr@chromium.org BUG=301625 Review URL: https://codereview.chromium.org/25238003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226441 0039d316-1c4b-4281-b951-d872f2087c98
* Sets the media element network state to idle until playback is requested.jinsukkim@chromium.org2013-10-022-0/+11
| | | | | | | | | This is the expected behavior if the user agent intends to not attempt to fetch the resource until the user requests it explicitly. Review URL: https://codereview.chromium.org/23797004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226440 0039d316-1c4b-4281-b951-d872f2087c98
* Update .gitignore.tommi@chromium.org2013-10-021-1/+0
| | | | | | | TBR=juberti@chromium.org BUG=298300 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226436 0039d316-1c4b-4281-b951-d872f2087c98
* Fix rebuilding the profile selector on the OSX App Launcher.tapted@chromium.org2013-10-024-10/+44
| | | | | | | | | | | | | | | rebuildMenu was only rebuilding the NSMenu, not the menu Model. Do both. Also add tests, and remove the unused AppListMenu::CURRENT_USER, to fix a broken test related to the test not observing the user model properly. BUG=302882 TEST=Open the App Launcher on OSX. Go to chrome://settings and add a user. The new user should appear in the App Lanucher profile selctor. Review URL: https://codereview.chromium.org/25535006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226435 0039d316-1c4b-4281-b951-d872f2087c98
* Update some stale TODO()s in c/b/ui/autofill.dbeam@chromium.org2013-10-023-41/+3
| | | | | | | | | | R=estade@chromium.org BUG=none TEST=less TODOs Review URL: https://codereview.chromium.org/25409002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226434 0039d316-1c4b-4281-b951-d872f2087c98
* net: Reset UploadDataStream on HttpNetworkTransaction destructionhashimoto@chromium.org2013-10-023-1/+60
| | | | | | | | | | | | | Make UploadDataStream::Reset public. Call Reset() from HttpNetworkTransaction's dtor. Add tests. BUG=244725 TEST=net_unittests --gtest_filter="*HttpNetworkTransactionTest.CancelDuringInitRequestBody*" Review URL: https://codereview.chromium.org/25217002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226433 0039d316-1c4b-4281-b951-d872f2087c98
* Disable ImmersiveModeControllerAshTestWithBrowserView.Layout. Flaky.tapted@chromium.org2013-10-021-1/+2
| | | | | | | | | | | Test introduced in r226182. BUG=302908, 295758 TBR=pkotwicz@chromium.org Review URL: https://codereview.chromium.org/25474004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226431 0039d316-1c4b-4281-b951-d872f2087c98
* Update svn:ignore.tommi@chromium.org2013-10-020-0/+0
| | | | | | | TBR=juberti@chromium.org BUG=298300 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226430 0039d316-1c4b-4281-b951-d872f2087c98
* Fix an error in cron_servlet.pyfangjue23303@gmail.com2013-10-021-1/+1
| | | | | | | | | | BUG=none R=kalman NOTRY=TRUE Review URL: https://codereview.chromium.org/25665002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226429 0039d316-1c4b-4281-b951-d872f2087c98
* dbus: Add ObjectProxy::WaitForServiceToBeAvailable()hashimoto@chromium.org2013-10-024-14/+170
| | | | | | | | | | | | | | Split ConnectToNameOwnerChangedSignal() from ConnectToSignalInternal(). Add WaitForServiceToBeAvailable() Add test. BUG=141009 TEST=dbus_unittests R=satorux@chromium.org Review URL: https://codereview.chromium.org/25488002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226428 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2013-10-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226427 0039d316-1c4b-4281-b951-d872f2087c98
* Blink roll 158648:158674eseidel@chromium.org2013-10-021-1/+1
| | | | | | | | | | http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=158649:158674&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/25654002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226426 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r223961 and r224074 (using IO message loop instead of DEFAULT).piman@chromium.org2013-10-022-33/+0
| | | | | | | | | | | | MessagePumpDefault was incorrectly using system time instead of monotonic time for PostDelayedTask. This was fixed in r226378 so we don't need this workaround any more. BUG=293736 Review URL: https://codereview.chromium.org/25628004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226425 0039d316-1c4b-4281-b951-d872f2087c98
* Remove superfluous "either"philipj@opera.com2013-10-021-1/+1
| | | | | | | | | | | Left in by mistake in https://codereview.chromium.org/3129003 NOTRY=True BUG= Review URL: https://codereview.chromium.org/25479002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226424 0039d316-1c4b-4281-b951-d872f2087c98
* views menus: fix alignment of items that have both checks and iconsestade@chromium.org2013-10-021-1/+6
| | | | | | | | BUG=294465 Review URL: https://codereview.chromium.org/25444004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226423 0039d316-1c4b-4281-b951-d872f2087c98
* Mojo: Optimize VerifyUserPointer().viettrungluu@chromium.org2013-10-026-18/+57
| | | | | | | | | | | | Gets rid of run-time division. In the new empty read test, goes from ~8.7 million iterations/second to ~9.7 million iterations/second (and in perf makes VerifyUserPointer() go from ~10% to ~0.5%). R=darin Review URL: https://codereview.chromium.org/25323003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226422 0039d316-1c4b-4281-b951-d872f2087c98
* Update OS version functions.avi@chromium.org2013-10-028-28/+110
| | | | | | | | | BUG=none TEST=covered Review URL: https://codereview.chromium.org/25286002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226421 0039d316-1c4b-4281-b951-d872f2087c98
* Extract ContentScanner from DirectoryContent.hidehiko@chromium.org2013-10-024-310/+471
| | | | | | | | | | | | | | | | | DirectoryContent had basically two functions. 1) The list of entries. 2) The scanning entries from backend. This CL extracts 2) part from DirectoryContent and create ContentScanner to simplify the code path. At the same time, some events sent from DirectoryContent was resorted, and their handlers in FileManager is fixed at the same time. BUG=279614 TEST=Ran browser_tests --gtest_filter="*FileSystemExtensionApiTest*:*FileManagerBrowserTest*:*FileBrowserPrivateApiTest*" and tested manually. Review URL: https://codereview.chromium.org/25278002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226420 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude ImmersiveModeControllerAshTestWithBrowserView.Layout on Valgrind.eugenis@chromium.org2013-10-021-0/+3
| | | | | | | | | BUG=302908 TBR=glider@chromium.org Review URL: https://codereview.chromium.org/25679003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226417 0039d316-1c4b-4281-b951-d872f2087c98
* views: Make sure menu checks and submenu arrows have high contrast even when ↵estade@chromium.org2013-10-025-36/+56
| | | | | | | | | | selected. BUG=298398 Review URL: https://codereview.chromium.org/25144002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226416 0039d316-1c4b-4281-b951-d872f2087c98
* retry r226004: rAc: phone number cleanupestade@chromium.org2013-10-0212-64/+228
| | | | | | | | | | | | | | | | original review: https://codereview.chromium.org/24538008/ difference to original review: android test updated. 1) fill Wallet phone number data in a format that's more similar to Autofill (i.e. whole number without any formatting) 2) display Wallet phone numbers in rAc in US-national format 3) display Autofill phone numbers in rAc in user-supplied format, unless there is no formatting. In that case add formatting. BUG=297204 R=isherman@chromium.org Review URL: https://codereview.chromium.org/25092011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226415 0039d316-1c4b-4281-b951-d872f2087c98
* Unit tests for output protection in output configuratorkcwu@chromium.org2013-10-021-1/+115
| | | | | | | | R=derat@chromium.org Review URL: https://codereview.chromium.org/25058009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226414 0039d316-1c4b-4281-b951-d872f2087c98
* Docserver: Consolidate features caching and access.rockot@chromium.org2013-10-0219-347/+753
| | | | | | | | This is just a refactor to reduce some code duplication and homogenize features processing a bit. Review URL: https://codereview.chromium.org/23867003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226413 0039d316-1c4b-4281-b951-d872f2087c98
* Move Insert/SignalSyncPoint() to GpuControljamesr@chromium.org2013-10-0217-50/+57
| | | | | | | | | | | This moves InsertSyncPoint() and SignalSyncPoint() to the gpu::GpuControl interface to get a step closer to removing the WebGraphicsContext3D interface. R=piman,sievers Review URL: https://codereview.chromium.org/24925002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226412 0039d316-1c4b-4281-b951-d872f2087c98
* Implementing chrome://thumbnails page to view URLs in TopSites and cached ↵huangs@chromium.org2013-10-0214-36/+265
| | | | | | | | | | thumbnails. BUG=298240 Review URL: https://codereview.chromium.org/24632002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226411 0039d316-1c4b-4281-b951-d872f2087c98
* WebCrypto: Implement importKey(), sign(), and verify() for HMAC in OpenSSLpadolph@netflix.com2013-10-023-20/+180
| | | | | | | | | BUG=267888 R=bryaneyler@google.com,eroman@chromium.org,ellyjones@chromium.org,rsleevi@chromium.org,jochen@chromium.org Review URL: https://codereview.chromium.org/24276011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226410 0039d316-1c4b-4281-b951-d872f2087c98
* Convert zoom callbacks to use CallbackRegistrycaitkp@chromium.org2013-10-0219-136/+81
| | | | | | | | | BUG=268984 TEST=no functional change. Review URL: https://codereview.chromium.org/23851016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226409 0039d316-1c4b-4281-b951-d872f2087c98
* Automated Commit: Committing new LKGM version 4764.0.0 for chromeos.chromeos-lkgm@google.com2013-10-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226408 0039d316-1c4b-4281-b951-d872f2087c98
* This CL:pkotwicz@chromium.org2013-10-023-6/+17
| | | | | | | | | | | | - Makes the content edge visible for restored v1 apps - Makes the PanelFrameView header height the same as that for CustomFrameViewAsh BUG=301865 TEST=Manual, see bug Review URL: https://codereview.chromium.org/25270004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226407 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce calling count of UpdateAppState()simon.hong81@gmail.com2013-10-024-78/+221
| | | | | | | | | | | | | | | | | | | | | | | | | When web page is loading, a lot of TabChangedAt() is called. That means a lot of UpdateAppState() is called, too. For example, loading google drive site causes almost more than 70 calling of TabChangedAt(). To replace TabChangedAt(), WebContentsObserver is used. TabDetachedAt() is replaced with TabClosingAt(). When tab is detached, there are two cases. The one case is tab is attached to other tab strip model. In this case, its LauncherItem is updated by ActiveTabChanged(). The other case is tab is closed. In this case TabClosingAt() can handle LauncherItem status. TabReplacedAt() is only used when tab is discarded when low memory condition is occurred. In this case, updating the launcher item status is not good because user don't need to know about discarding a tab. Also it is reloaded again when user selects discarded tab. R=skuhne@chromium.org BUG=NONE TEST=browser_tests, unit_tests Review URL: https://codereview.chromium.org/23708028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226406 0039d316-1c4b-4281-b951-d872f2087c98
* Byte-swap the video frame pixels before passing them to Java.lambroslambrou@chromium.org2013-10-0212-48/+143
| | | | | | | | | | When a complete video frame is decoded, this CL converts the pixels from BGRA to a format suitable for loading into a Java Bitmap directly. This removes the need to create a temporary int[] array in Java. Review URL: https://codereview.chromium.org/23677011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226405 0039d316-1c4b-4281-b951-d872f2087c98
* Remove unused items in the ash tray for Windows.cpu@chromium.org2013-10-022-31/+31
| | | | | | | | | | | | | | Like the update nagger Like IME Like the drive item BUG=227247 TEST=see bug Review URL: https://codereview.chromium.org/23560013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226404 0039d316-1c4b-4281-b951-d872f2087c98
* Media Galleries API Picasa: End-to-end browsertest.tommycli@chromium.org2013-10-028-26/+360
| | | | | | | | | | | | | Adds an end-to-end browser test to Picasa. Dependent on this fix going through: https://codereview.chromium.org/24269007/ BUG=151701 Review URL: https://codereview.chromium.org/23513059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226402 0039d316-1c4b-4281-b951-d872f2087c98
* Fix restoring a window after maximizing it. (Mac)jackhou@chromium.org2013-10-022-3/+33
| | | | | | | | | | | | | | | | | | | | | Currently the window does not restore to its original size because we save the current size of the window whenever it's resized. However, during a zoom (maximize), the windowDidResize notification is fired on every animation frame. In this CL, the current size is only saved after the animation finishes. |is_maximized_| and |is_fullscreen_| are also updated when a resize finishes, and when going in and out of fullscreen. BUG=168080, 230778, 302053 TEST=Maximize and restore an app window, it should return to its original size. TEST=Do the following sequence on an app window: Maximize, fullscreen, exit fullscreen, then restore. The app should return to its original size. Review URL: https://codereview.chromium.org/23494065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226401 0039d316-1c4b-4281-b951-d872f2087c98
* Endure: rename trace names, making them lowercaseqyearsley@chromium.org2013-10-021-7/+8
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/23449041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226400 0039d316-1c4b-4281-b951-d872f2087c98
* Move FileAPI test code from webkit to contentkinuko@chromium.org2013-10-0240-117/+113
| | | | | | | | | | | (Namespace fix will come later) BUG=265769 TEST=build Review URL: https://codereview.chromium.org/23440033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226399 0039d316-1c4b-4281-b951-d872f2087c98
* Collect more data to send in crash reports for a crasher that's stumping me.jam@chromium.org2013-10-022-0/+23
| | | | | | | | | BUG=302530 R=brettw@chromium.org Review URL: https://codereview.chromium.org/25555006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226398 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 1658.0 to 1659.0chrome-release@google.com2013-10-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226392 0039d316-1c4b-4281-b951-d872f2087c98
* Land Recent QUIC changes.rtenneti@chromium.org2013-10-029-89/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixing minor nits (added using std::pair). Merge internal change: 53257699 Increasing the maximum tcp congestion window to 200 packets from 100. Merge internal change: 53185276 Add a DCHECK to ensure the sent packet sequence number never goes down and separate the send alarm into a send alarm and a resume writes alarm to be used when the socket is still writable an there may be more pending data to write. Merge internal change: 53050471 Merged quic_epoll_connection_helper_test.cc from internal code. Minor nit fixes. Merge internal change: 53048224 Move QuicAckNotifierManager from QuicConnection to QuicSentPacketManager. Merge internal change: 53036185 R=jar@chromium.org, rch@chromium.org, wtc@chromium.org Review URL: https://codereview.chromium.org/25443002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226390 0039d316-1c4b-4281-b951-d872f2087c98
* Added a field trial (finch experiment) to disable SPDY for x% of users.rtenneti@chromium.org2013-10-021-3/+19
| | | | | | | | | BUG=297361, 299956 R=rch@chromium.org, asvitkine@chromium.org Review URL: https://codereview.chromium.org/25087007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226389 0039d316-1c4b-4281-b951-d872f2087c98
* Add undocumented AppLaunchBucket enum values to histograms.xml.koz@chromium.org2013-10-021-0/+4
| | | | | | | | | | This enum is defined in chrome/common/extensions/extension_constants.h R=jar@chromium.org Review URL: https://codereview.chromium.org/25457002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226388 0039d316-1c4b-4281-b951-d872f2087c98
* Enable external protocol dialog on Windows Aurascottmg@chromium.org2013-10-023-10/+7
| | | | | | | | | R=ben@chromium.org BUG=295499 Review URL: https://codereview.chromium.org/25589002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226387 0039d316-1c4b-4281-b951-d872f2087c98
* Disabled shared crypto config code to isolate youtube performance issuesrtenneti@chromium.org2013-10-022-2/+4
| | | | | | | | R=jar@chromium.org Review URL: https://codereview.chromium.org/25578002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226386 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 226376 "[rAC, OSX] saveInChrome status now persistent."piman@chromium.org2013-10-023-12/+2
| | | | | | | | | | | | | | | | | | | | | | Broke the mac build: http://build.chromium.org/p/chromium.mac/buildstatus?builder=Mac10.6%20Tests%20%282%29&number=42927 > [rAC, OSX] saveInChrome status now persistent. > > The AutofillDialogController already persisted the state of the > "Save in Chrome" checkbox. This CL ensures that the OSX dialog reflects > that persisted state and is properly updated when the state changes. > > NOTRY=true > BUG=282101 > R=avi@chromium.org > > Review URL: https://codereview.chromium.org/25405003 TBR=groby@chromium.org Review URL: https://codereview.chromium.org/25673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226385 0039d316-1c4b-4281-b951-d872f2087c98