summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Publish DEPS for Chromium 34.0.1847.3934.0.1847.39gitdeps2014-04-072-764/+518
|
* Incrementing VERSION to 34.0.1847.39chrome-release@google.com2014-02-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@254159 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253852 "MediaStreamDispatcherHost does not need all of Res..."joi@chromium.org2014-02-284-18/+17
| | | | | | | | | | | | | | | | | > MediaStreamDispatcherHost does not need all of ResourceContext. > > Instead of passing ResourceContext, just pass the > ResourceContext::SaltCallback which is used by MSDH. > > BUG=347302 > > Review URL: https://codereview.chromium.org/177313006 TBR=joi@chromium.org Review URL: https://codereview.chromium.org/184383002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@254070 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253352 "Fix crash while opening Drive files that are just ..."kinaba@google.com2014-02-282-19/+18
| | | | | | | | | | | | | | | | | | > Fix crash while opening Drive files that are just after upload-synced. > > In the short interval between the uploading (= clearing dirty bit) and > metadata feed fetching (= updating metadata cache like file size), the > download operation reported wrong file size. This CL fixes the case. > > BUG=346228 > > Review URL: https://codereview.chromium.org/179453002 TBR=kinaba@chromium.org Review URL: https://codereview.chromium.org/184043003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@254039 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253531 "Combobox: Have the first item not rendered for an ..."hajimehoshi@chromium.org2014-02-281-2/+10
| | | | | | | | | | | | | | | | | | > Combobox: Have the first item not rendered for an action combobox > > This CL skips rendering the first item and separators on the dropdown > menu for an 'action' combobox. > > BUG=341994 > TEST=manual > > Review URL: https://codereview.chromium.org/178003009 TBR=hajimehoshi@chromium.org Review URL: https://codereview.chromium.org/183863006 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@254025 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 34.0.1847.38chrome-release@google.com2014-02-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253990 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253449 "Fix a crashing bug that can happen during browser ..."michaeln@google.com2014-02-271-4/+18
| | | | | | | | | | | | | | > Fix a crashing bug that can happen during browser shutdown. If shutdown happens while task to commit changes to the db occurs the program crashes. The fix is to detect when we're in the STORING state and to return early. > > BUG=330917,331918 > > Review URL: https://codereview.chromium.org/178733002 TBR=michaeln@chromium.org Review URL: https://codereview.chromium.org/179363015 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253971 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253523 "add logging for inline signin and"guohui@chromium.org2014-02-274-75/+116
| | | | | | | | | | | | | | | | > add logging for inline signin and > fix wierdness due to duplciate call to InlineLoginHandlerImpl::CompleteLogin, see crbug/345661 and > fix crash on nested navigation, see crbug/346632 > > BUG=345661, 346632 > > Review URL: https://codereview.chromium.org/177903007 TBR=guohui@chromium.org Review URL: https://codereview.chromium.org/180243019 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253961 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253567 "cros: Make gaia-signin.no-right-panel bigger."xiyuan@chromium.org2014-02-271-1/+1
| | | | | | | | | | | | | | | | | > cros: Make gaia-signin.no-right-panel bigger. > > Use small (522px) width for gaia-signin.no-right-panel div only when > SAML redirection does not happen. > > BUG=346663 > > Review URL: https://codereview.chromium.org/179833005 TBR=xiyuan@chromium.org Review URL: https://codereview.chromium.org/183953003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253958 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253301 "Removes the options for voice search in the app-li..."mukai@chromium.org2014-02-274-20/+0
| | | | | | | | | | | | | | | | | | | | | | | > Removes the options for voice search in the app-list only. > > We use the same checkbox for the hotword.search_enabled for the > voice search, so this checkbox is just unnecessary. > > I'll create another CL to cleanup the hotword.app_list_enabled > preference item, but this is intentionally small to be merged > easily. > > BUG=345856 > R=rlp@chromium.org, estade@chromium.org > TEST=manually > > Review URL: https://codereview.chromium.org/167733004 TBR=mukai@chromium.org Review URL: https://codereview.chromium.org/176953007 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253957 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253541 "Fix remoting webapp to properly handle non support..."sergeyu@chromium.org2014-02-272-5/+5
| | | | | | | | | | | | | | | | | | | | > Fix remoting webapp to properly handle non supported platforms. > > HostController always reports local host state as NOT_INSTALLED when > host is not installed, while HostList expected it to be reported as > NOT_IMPLEMENTED when the current platform is not supported. Fixed > HostList to call remoting.isMe2MeInstallable() to decide if host > controls must be shown when host state is reported as NOT_INSTALLED. > > BUG=346528 > > Review URL: https://codereview.chromium.org/180783002 TBR=sergeyu@chromium.org Review URL: https://codereview.chromium.org/180153006 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253951 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253462 "cc: Require high-res tiles for activation after en..."reveman@chromium.org2014-02-272-1/+50
| | | | | | | | | | | | | | | | | | | > cc: Require high-res tiles for activation after entering NEW_CONTENT_TAKES_PRIORITY mode. > > Once we enter NEW_CONTENTS_TAKES_PRIORITY mode, visible tiles on active > tree might be freed. We need to set RequiresHighResToDraw to ensure that > high res tiles will be required to activate pending tree. > > BUG=345426,345968 > TEST=cc_unittests --gtest_filter=LayerTreeHostTestHighResRequiredAfterEvictingUIResources* > > Review URL: https://codereview.chromium.org/176923007 TBR=reveman@chromium.org Review URL: https://codereview.chromium.org/183753004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253941 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253605 "Disable cursor compositing when virtual keyboard i..."hshi@chromium.org2014-02-271-0/+9
| | | | | | | | | | | | | | | | > Disable cursor compositing when virtual keyboard is enabled. > > BUG=347009 > TEST=verify cursor is not obscured by virtual keyboard. > R=oshima@chromium.org > > Review URL: https://codereview.chromium.org/181003004 TBR=hshi@chromium.org Review URL: https://codereview.chromium.org/183603003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253907 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253700 "[Hotword] Remove debugging output."rlp@chromium.org2014-02-271-2/+0
| | | | | | | | | | | | | | > [Hotword] Remove debugging output. > > BUG=346821 > > Review URL: https://codereview.chromium.org/181103002 TBR=rlp@chromium.org Review URL: https://codereview.chromium.org/183623004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253905 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253445 "Hide system tray bubble after "Sign in to another ..."dzhioev@google.com2014-02-271-0/+1
| | | | | | | | | | | | | | | | | > Hide system tray bubble after "Sign in to another account.." was clicked. > > This prevents user from double clicking on "Sign in ..." button. > > BUG=309735 > TEST=manually > > Review URL: https://codereview.chromium.org/176813009 TBR=dzhioev@chromium.org Review URL: https://codereview.chromium.org/183743002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253904 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253797 "Changed verification_key_hash to verification_key_..."atwilson@chromium.org2014-02-271-1/+1
| | | | | | | | | | | | | | > Changed verification_key_hash to verification_key_id in NAC header > > BUG=347070 > > Review URL: https://codereview.chromium.org/181643003 TBR=atwilson@chromium.org Review URL: https://codereview.chromium.org/176953005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253902 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252215 "Add Locale Request Support to Chrome Now"robliao@chromium.org2014-02-271-0/+2
| | | | | | | | | | | | | | > Add Locale Request Support to Chrome Now > > BUG=164227 > > Review URL: https://codereview.chromium.org/172733002 TBR=robliao@chromium.org Review URL: https://codereview.chromium.org/179363014 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253883 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252086 "Fix webpagereplay.py so that dns_port can be None."craigdh@chromium.org2014-02-271-2/+4
| | | | | | | | | | | | | | | | > Fix webpagereplay.py so that dns_port can be None. > > BUG=339878 > NOTRY=True > R=frankf@chromium.org > > Review URL: https://codereview.chromium.org/170263006 TBR=craigdh@chromium.org Review URL: https://codereview.chromium.org/183133004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253859 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 34.0.1847.37chrome-release@google.com2014-02-271-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253845 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252421 "net: don't always add TLS padding."agl@chromium.org2014-02-274-36/+2
| | | | | | | | | | | | | | | | | | | | > net: don't always add TLS padding. > > In order to flush out any problems with padding, Chrome has always been > adding it, even when the ClientHello was small enough not to need it. > > Since that change is in Chrome 33 (and the Chrome 34 branch), it's time > to remove it. > > BUG=315828 > > Review URL: https://codereview.chromium.org/171713011 TBR=agl@chromium.org Review URL: https://codereview.chromium.org/180973006 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253838 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253167 "Fixed a corner-case of the auto-enrollment protocol."joaodasilva@chromium.org2014-02-273-6/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | > Fixed a corner-case of the auto-enrollment protocol. > > ChromeOS checks if the device should automatically enroll for enterprise > management during OOBE. Part of this check involves uploading some bits > of a hash of the serial number. The server can then request for some > more bits, up to a limit; when that happens the client retries at most > once with the updated bits. > > However, if the first request fails due to a network change event and > then the retry receives a modulus update request then the client won't > retry again, because it believes it has already retried. This change > fixes that, so that only retries triggered by modulus update requests > are limited. > > BUG=346682 > R=mnissler@chromium.org > > Review URL: https://codereview.chromium.org/177953005 TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/178223018 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253754 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252899 "Correctly esapce destination file name in fileBrow..."kinaba@google.com2014-02-271-1/+1
| | | | | | | | | | | | | | > Correctly esapce destination file name in fileBrowserPrivate.startCopy. > > BUG=345949 > > Review URL: https://codereview.chromium.org/176703003 TBR=kinaba@chromium.org Review URL: https://codereview.chromium.org/182623002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253720 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252044 "Files.app: Use createDirectoryContents_ method dur..."hirono@chromium.org2014-02-272-4/+2
| | | | | | | | | | | | | | | | | | | | | > Files.app: Use createDirectoryContents_ method during search. > > Previously, during typing a search query on the drive, Files.app uses > DirectoryContents#createForDirectory method. It does not handle FakeEntries so > it causes an exception if a user typing a search query in the drive special > folders. This CL replace the method with createDirectoryContents_, which is > a caller of the createForDirectory method and can handle FakeEntries. > > BUG=344459 > TEST=manually > > Review URL: https://codereview.chromium.org/166443008 TBR=hirono@chromium.org Review URL: https://codereview.chromium.org/181613005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253697 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 34.0.1847.36chrome-release@google.com2014-02-271-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253689 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253684 "Make User-Section be fail-safe with regard to bein..."stevenjb@chromium.org2014-02-272-3/+14
| | | | | | | | | | | | | | | | | | > Make User-Section be fail-safe with regard to being hidden. > > dcommit of https://codereview.chromium.org/181493002/#ps20001 > (cq taking > 5 hours) > > BUG=346401 > TBR=bcwhite@chromium.org > > Review URL: https://codereview.chromium.org/181803005 TBR=stevenjb@chromium.org, bcwhite@chromium.org Review URL: https://codereview.chromium.org/181413009 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253687 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252731 "CC: Fix overlow in multiply."epenner@google.com2014-02-271-2/+3
| | | | | | | | | | | | | | | | > CC: Fix overlow in multiply. > > The soft limit calculation can overflow given high byte values. > > BUG=345426 > > Review URL: https://codereview.chromium.org/175543002 TBR=epenner@chromium.org Review URL: https://codereview.chromium.org/179853004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253670 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252848 "Fix getPairedClients for un-elevated native messag..."weitaosu@chromium.org2014-02-271-1/+3
| | | | | | | | | | | | | | | | > Fix getPairedClients for un-elevated native messaging process. > > Without this change the un-elevated native messaging process will return an empty list because the pairings are considered invalid. > > BUG=345951 > > Review URL: https://codereview.chromium.org/175343006 TBR=weitaosu@chromium.org Review URL: https://codereview.chromium.org/177243022 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253655 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252980 "Fix regression in pairing registry caused by crrev..."weitaosu@chromium.org2014-02-271-1/+1
| | | | | | | | | | | | | | | | > Fix regression in pairing registry caused by crrev.com/131643008. > > The pairing registry appears to be unsupported because supportedFeatures_ is always empty. > > BUG=345951 > > Review URL: https://codereview.chromium.org/175313005 TBR=weitaosu@chromium.org Review URL: https://codereview.chromium.org/182463002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253654 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253578 "Prevent screen lock from being stuck when webkitTr..."dpolukhin@chromium.org2014-02-272-14/+19
| | | | | | | | | | | | | | | | | | | | | | > Prevent screen lock from being stuck when webkitTransitionEnd event don't fire: > 1) Do not check for event target (=root cause) > 2) If screen lock is timed out crash the browser instead of trying to recover somehow. > > +some extra logging added > > BUG=346402 > R=nkostylev@chromium.org > TBR=derat@chromium.org > > NOTRY=true > > Review URL: https://codereview.chromium.org/176923022 TBR=nkostylev@chromium.org Review URL: https://codereview.chromium.org/181803004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253645 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252282 "[Android] More eager gesture recognition hardening"jdduke@chromium.org2014-02-274-30/+52
| | | | | | | | | | | | | | | | | | | > [Android] More eager gesture recognition hardening > > Handle several corner cases of touch event handling, particularly if an > exception occurs between |onTouchEventHandlingBegin| and > |onTouchEventHandlingEnd| in ContentViewGestureHandler. > > BUG=344674,341495 > NOTRY=true > > Review URL: https://codereview.chromium.org/170673005 TBR=jdduke@chromium.org Review URL: https://codereview.chromium.org/177003024 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253644 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252223 "Correctly handle any number of channels in WebAudi..."rtoy@google.com2014-02-261-6/+15
| | | | | | | | | | | | | | | | | | | > Correctly handle any number of channels in WebAudio file decoder on Android. > > CopyPcmDataToBus incorrectly assumed that each pipe contained a > integer number of frames. This is only true if the number of channels > is 1 or 2. For more channels, this is false, so we have to copy the > data carefully, keeping track of which sample in a frame we are in. > > BUG=343648 > > Review URL: https://codereview.chromium.org/164023007 TBR=rtoy@google.com Review URL: https://codereview.chromium.org/182413002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253641 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252412 "Add flag to disable demo mode."rkc@chromium.org2014-02-263-0/+7
| | | | | | | | | | | | | | | > Add flag to disable demo mode. > > R=dpolukhin@chromium.org > BUG=343727 > > Review URL: https://codereview.chromium.org/168853003 TBR=rkc@chromium.org Review URL: https://codereview.chromium.org/177383008 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253637 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252773 "[Android] Ensure slop-exceeding TouchMove's are se..."jdduke@chromium.org2014-02-262-9/+56
| | | | | | | | | | | | | | | | | | | | | | | > [Android] Ensure slop-exceeding TouchMove's are sent to the renderer > > Without floating point DIP coords in WebTouchPoint, it's possible that a > TouchMove physically outside the pixel slop region will be classified as > inside the DIP slop region. This leads to cases where a touch handler is > never offered a TouchMove before a ScrollBegin occurs. > > Until the resolution of crbug.com/3336807, address this by conservatively > constructing the DIP slop region in the TouchEventQueue, ensuring that touch > handlers are offered at least one TouchMove before scrolling begins. > > BUG=345507 > > Review URL: https://codereview.chromium.org/172263007 TBR=jdduke@chromium.org Review URL: https://codereview.chromium.org/181803003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253636 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252809 "Omnibox: Fixes Allow-To-Be-Default-Match Code for ..."mpearson@chromium.org2014-02-262-67/+111
| | | | | | | | | | | | | | | | > Omnibox: Fixes Allow-To-Be-Default-Match Code for HistoryQuick Provider > > This was broken for prevent-inline-autocomplete mode. See bug. > > BUG=345366 > > Review URL: https://codereview.chromium.org/169463011 TBR=mpearson@chromium.org Review URL: https://codereview.chromium.org/181773005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253574 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252690 "Fixed the unexpected error bubble with skip for now"guohui@chromium.org2014-02-264-16/+31
| | | | | | | | | | | | | | | | | | > Fixed the unexpected error bubble with skip for now > > It also fixed the scroll issue 344329, and win8 mode issue 331752. > > BUG=345665, 344329, 331752 > R=zea@chromium.org > TBR=rogerta@chromium.org, xiyuan@chromium.org > > Review URL: https://codereview.chromium.org/170683003 TBR=guohui@chromium.org Review URL: https://codereview.chromium.org/177093025 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253544 0039d316-1c4b-4281-b951-d872f2087c98
* Setting version to MAJOR=34chrome-release@google.com2014-02-261-1/+1
| | | | | | | | | MINOR=0 BUILD=1847 PATCH=35 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253538 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 253086 "kiosk: Use ExtensionUpdater for launch time update."xiyuan@chromium.org2014-02-267-204/+159
| | | | | | | | | | | | | | | | | | | > kiosk: Use ExtensionUpdater for launch time update. > > Previous r244632 took a shortcut and use uninstall/reinstall to update > the app. This is wrong and causes the app local data being lost. This > CL fixes the problem by using ExtensionUpdater. > > BUG=345756 > R=tengs@chromium.org > > Review URL: https://codereview.chromium.org/177533006 TBR=xiyuan@chromium.org Review URL: https://codereview.chromium.org/176823007 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253512 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 34.0.1847.25chrome-release@google.com2014-02-261-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253484 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252347 "[Android WebView] Allow embedders to override text..."benm@chromium.org2014-02-261-8/+6
| | | | | | | | | | | | | | | | | | | | | > [Android WebView] Allow embedders to override text from scaling by system font scale. > > Relaxes the use of system font scale. Before this patch, > we would override the value passed to AwSettings.setTextZoom to take > into account system font scale. Now, if an app does not invoke > setTextZoom then we'll respect the system font scale. However if an > embedder then later invokes setTextZoom, we'll honor their value without > applying any scale. > > BUG=345294 > > Review URL: https://codereview.chromium.org/173943002 TBR=benm@chromium.org Review URL: https://codereview.chromium.org/176823005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253437 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252048 "Center browser dialogs with respect to docked devt..."lushnikov@chromium.org2014-02-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | > Center browser dialogs with respect to docked devtools > > Currently browser dialogs are centered relatively to the main > webcontents. If one has docked devtools which occupy 90% of the browser > window, the dialog is hardly seen. > > This patch makes dialogs to be centered with respect to open devtools, > which means centering to the container of both inspected webcontents > and and devtools. > > BUG= > > Review URL: https://codereview.chromium.org/169403004 TBR=lushnikov@chromium.org Review URL: https://codereview.chromium.org/177533022 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253398 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252961 "Some Android models don't handle the file content ..."miguelg@chromium.org2014-02-261-0/+5
| | | | | | | | | | | | | | | > Some Android models don't handle the file content provider properly apparently. See bug for more information. > > > BUG=345393 > > Review URL: https://codereview.chromium.org/174073013 TBR=miguelg@chromium.org Review URL: https://codereview.chromium.org/181333002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253397 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252121 "UMA histrograms to track MW support"miguelg@chromium.org2014-02-263-0/+14
| | | | | | | | | | | | | | > UMA histrograms to track MW support > > BUG=329265 > > Review URL: https://codereview.chromium.org/150573004 TBR=miguelg@chromium.org Review URL: https://codereview.chromium.org/181313002 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253396 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252674 "[Mac] Draw accelerated underlay view immediately i..."dgozman@google.com2014-02-261-1/+1
| | | | | | | | | | | | | | > [Mac] Draw accelerated underlay view immediately instead of marking for display. > > BUG=344365 > > Review URL: https://codereview.chromium.org/169813002 TBR=dgozman@chromium.org Review URL: https://codereview.chromium.org/181143003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253395 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252126 "Show the extension / app name for platform verific..."dkrahn@chromium.org2014-02-261-1/+9
| | | | | | | | | | | | | | | | | | | > Show the extension / app name for platform verification. > > The platform verification dialog communicates to the user the origin of > the request. Normally this is a web origin but for extensions or v2 > apps the web origin is ugly and the extension / app name is better. > > BUG=chromium:344723 > TEST=manual > > Review URL: https://codereview.chromium.org/171483003 TBR=dkrahn@chromium.org Review URL: https://codereview.chromium.org/180253009 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253371 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252321 "AudioPlayer: Fix the errors at the 2nd launch"yoshiki@chromium.org2014-02-262-1/+2
| | | | | | | | | | | | | | | | | | | > AudioPlayer: Fix the errors at the 2nd launch > > This patch fixes the following bugs which causes errors at the 2nd launch: > - Typo on the background page > - An uninitialized property > > BUG=343698 > TEST=manually tested > > Review URL: https://codereview.chromium.org/171603012 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/180013005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253320 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 251990 "[Files.app] Use util.visitURL to open the webstore..."yoshiki@chromium.org2014-02-261-1/+1
| | | | | | | | | | | | | | | | | > [Files.app] Use util.visitURL to open the webstore link > > chrome.windows.create has been obsolete and should not be used. > > BUG=343317 > TEST=manually tested > > Review URL: https://codereview.chromium.org/171563003 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/180793004 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253319 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 251953 "[AudioPlayer] Regenerate play order when is is ins..."yoshiki@chromium.org2014-02-262-11/+16
| | | | | | | | | | | | | | | > [AudioPlayer] Regenerate play order when is is insufficient > > BUG=342593 > TEST=manually tested > > Review URL: https://codereview.chromium.org/165983002 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/180283005 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253318 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 34.0.1847.24chrome-release@google.com2014-02-261-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253313 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252619 "Don't enable DWM rendering policy on Windows with ..."ananta@chromium.org2014-02-261-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | > Don't enable DWM rendering policy on Windows with custom frames. > > This typically happens when we install a theme. Setting the DWM rendering policy on such > windows appears to confuse DWM, leading to the frame painting black when we switch back > to the default frame. > > This problem only happens on Windows Vista + (Aero). > > The other change is to call the HWNDMessageHandler::UpdateDwmNcRenderingPolicy function > from the HWNDMessageHandler::FrameTypeChanged function as before. This is to ensure that > we set DWM policy when the frame type changes. > > BUG=342664 > R=benwells@chromium.org, sky@chromium.org > > Review URL: https://codereview.chromium.org/174103004 TBR=ananta@chromium.org Review URL: https://codereview.chromium.org/180693003 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253311 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 252288 "Do not pop up Files app, when the recovery tool is..."mtomasz@chromium.org2014-02-261-8/+36
| | | | | | | | | | | | | | | | | > Do not pop up Files app, when the recovery tool is running. > > This patch whitelists the recovery tool, so the Files app doesn't pop up when a USB/SD is inserted. This is a temporary solution for M34. > > TEST=Tested manually on Pixel. > BUG=341711 > > Review URL: https://codereview.chromium.org/171513005 TBR=mtomasz@chromium.org Review URL: https://codereview.chromium.org/177003013 git-svn-id: svn://svn.chromium.org/chrome/branches/1847/src@253304 0039d316-1c4b-4281-b951-d872f2087c98