summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Publish DEPS for Chromium 35.0.1916.13835.0.1916.138gitdeps2014-05-232-781/+699
|
* Incrementing VERSION to 35.0.1916.138chrome-release@google.com2014-05-231-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@272606 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.137chrome-release@google.com2014-05-231-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@272404 0039d316-1c4b-4281-b951-d872f2087c98
* Setting version to MAJOR=35chrome-release@google.com2014-05-211-1/+1
| | | | | | | | | MINOR=0 BUILD=1916 PATCH=136 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271980 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.126chrome-release@google.com2014-05-211-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271875 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.125chrome-release@google.com2014-05-201-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271647 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 271613 "Merge 270347 "Don't kill key events even when it'..."yukishiino@google.com2014-05-202-18/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN." > > ######## > THIS IS 3RD TRY... > ######## > > > Don't kill key events even when it's VKEY_UNKNOWN. > > > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > > > If we need to ignore some special keys, we should explicitly list them up. > > > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > > > BUG=363037 > > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > > > Review URL: https://codereview.chromium.org/278843002 > > TBR=yukishiino@chromium.org > > Review URL: https://codereview.chromium.org/292143002 TBR=yukishiino@google.com Review URL: https://codereview.chromium.org/291133003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271632 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.124chrome-release@google.com2014-05-201-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271618 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN."yukishiino@google.com2014-05-202-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ######## THIS IS 3RD TRY... ######## > Don't kill key events even when it's VKEY_UNKNOWN. > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > If we need to ignore some special keys, we should explicitly list them up. > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > BUG=363037 > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > Review URL: https://codereview.chromium.org/278843002 TBR=yukishiino@chromium.org Review URL: https://codereview.chromium.org/292143002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271613 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 271606 "Merge 270347 "Don't kill key events even when it'..."yukishiino@google.com2014-05-202-18/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN." > > ######## > THIS IS 2ND TRY TO MERGE. THE 1ST ONE WAS REVERTED DUE TO A CONFLICT. > ######## > > > Don't kill key events even when it's VKEY_UNKNOWN. > > > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > > > If we need to ignore some special keys, we should explicitly list them up. > > > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > > > BUG=363037 > > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > > > Review URL: https://codereview.chromium.org/278843002 > > TBR=yukishiino@chromium.org > > Review URL: https://codereview.chromium.org/298663002 TBR=yukishiino@google.com Review URL: https://codereview.chromium.org/292973002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271610 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN."yukishiino@google.com2014-05-202-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ######## THIS IS 2ND TRY TO MERGE. THE 1ST ONE WAS REVERTED DUE TO A CONFLICT. ######## > Don't kill key events even when it's VKEY_UNKNOWN. > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > If we need to ignore some special keys, we should explicitly list them up. > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > BUG=363037 > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > Review URL: https://codereview.chromium.org/278843002 TBR=yukishiino@chromium.org Review URL: https://codereview.chromium.org/298663002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271606 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 271581 "Merge 270347 "Don't kill key events even when it'..."yukishiino@google.com2014-05-202-18/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN." > > > Don't kill key events even when it's VKEY_UNKNOWN. > > > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > > > If we need to ignore some special keys, we should explicitly list them up. > > > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > > > BUG=363037 > > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > > > Review URL: https://codereview.chromium.org/278843002 > > TBR=yukishiino@chromium.org > > Review URL: https://codereview.chromium.org/298643003 TBR=yukishiino@google.com Review URL: https://codereview.chromium.org/289983006 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271604 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 270347 "Don't kill key events even when it's VKEY_UNKNOWN."yukishiino@google.com2014-05-202-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | > Don't kill key events even when it's VKEY_UNKNOWN. > > We're killing key events with key_code = VKEY_UNKNOWN in WindowTargeter, but it's wrong. There exists not a few hardware keys used to type characters (such as ä, í) whose key code falls into VKEY_UNKNOWN. We should not ignore key events just because their key code falls into VKEY_UNKNOWN. VKEY_UNKNOWN means just that we failed to map a key code to our small set of keys. Even if it's not a well-known standard key, it's a key. > > This CL allows all the key events which have a character be despatched to the target window regardless of key code. > > If we need to ignore some special keys, we should explicitly list them up. > > NOTE against Issue 119407 ( https://codereview.chromium.org/9835032 ) > XF86XK_PowerOff no longer converts into VKEY_UNKNOWN, it converts into VKEY_POWER (=0x98). > > BUG=363037 > TEST=Manually done with a UK keyboard, which has keycode 94. Or with HHKB with running xmodmap -e 'keycode 100 = adiaeresis Adiaeresis'. > > Review URL: https://codereview.chromium.org/278843002 TBR=yukishiino@chromium.org Review URL: https://codereview.chromium.org/298643003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271581 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.123chrome-release@google.com2014-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271482 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.122chrome-release@google.com2014-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@271406 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.121chrome-release@google.com2014-05-161-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270965 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.120chrome-release@google.com2014-05-161-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270930 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 270560 "sync: always StopModels in DTC if aborting load."tim@chromium.org2014-05-151-0/+3
| | | | | | | | | | | | | > sync: always StopModels in DTC if aborting load. > BUG=352324 > > Review URL: https://codereview.chromium.org/281173002 TBR=tim@chromium.org Review URL: https://codereview.chromium.org/286163003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270823 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.119chrome-release@google.com2014-05-151-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270795 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.118chrome-release@google.com2014-05-151-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270698 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.117chrome-release@google.com2014-05-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270510 0039d316-1c4b-4281-b951-d872f2087c98
* Merge https://codereview.chromium.org/286003003/kerz@chromium.org2014-05-141-9/+0
| | | | | | | | | | | Remove instant-search-clicks flag. TBR=ksimbili BUG=373381 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270509 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.116chrome-release@google.com2014-05-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270289 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.115chrome-release@google.com2014-05-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270256 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.114chrome-release@google.com2014-05-131-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270117 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269840 "Don't inhibit checking for pending updates for dom..."grt@chromium.org2014-05-131-7/+11
| | | | | | | | | | | | | | | | | > Don't inhibit checking for pending updates for domain-enrolled machines. > > Only the check for an outdated install should be suppressed in this case. > > BUG=342465 > R=robertshield@chromium.org, sky@chromium.org > > Review URL: https://codereview.chromium.org/277403003 TBR=grt@chromium.org Review URL: https://codereview.chromium.org/280753004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270106 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 266012 "Fix to update checks."grt@chromium.org2014-05-131-4/+8
| | | | | | | | | | | | | | | | > Fix to update checks. > > The is_stable_version was not updated for users on a domain... Now it is... > > BUG=342465 > > Review URL: https://codereview.chromium.org/254483004 TBR=mad@chromium.org Review URL: https://codereview.chromium.org/275103008 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270105 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 267918 "Store context in scoped_refptr between tasks."mvanouwerkerk@chromium.org2014-05-132-2/+5
| | | | | | | | | | | | | | > Store context in scoped_refptr between tasks. > > BUG=344654 > > Review URL: https://codereview.chromium.org/265053002 TBR=mvanouwerkerk@chromium.org Review URL: https://codereview.chromium.org/281633004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270093 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269194 "Add Play Movies app's id to feedback whitelist."dbeam@chromium.org2014-05-131-0/+4
| | | | | | | | | | | | > Add Play Movies app's id to feedback whitelist. > > Review URL: https://codereview.chromium.org/270523003 TBR=arthurhsu@chromium.org Review URL: https://codereview.chromium.org/284813002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270033 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.113chrome-release@google.com2014-05-131-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270019 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 263610 "drive: Stop reading child entries in ReadDirectory..."hashimoto@chromium.org2014-05-1311-173/+140
| | | | | | | | | | | | | | | | | | | | | > drive: Stop reading child entries in ReadDirectory() when not needed > > We should avoid calling ResourceMetadata::ReadDirectoryById when possible because it's costly with large directories. > > Change ReadDirectory() to have two callbacks, |entries_callback| and |completion_callback|. > When |entries_callback| is null, do not call ReadDirectoryById. > Stop calling ReadDirectoryById in CheckLocalState() > > BUG=362087 > TEST=unit_tests > > Review URL: https://codereview.chromium.org/234793003 TBR=hashimoto@chromium.org Review URL: https://codereview.chromium.org/280363003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@270004 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269345 "[FileAPI] Clean up WebFileSystemImpl before Blink ..."tzik@chromium.org2014-05-131-0/+2
| | | | | | | | | | | | | | | | | > [FileAPI] Clean up WebFileSystemImpl before Blink shutdown > > WebFileSystemImpl should not outlive V8 instance, since it may have references to V8. > This CL ensures it deleted before Blink shutdown. > > BUG=369525 > > Review URL: https://codereview.chromium.org/270633009 TBR=tzik@chromium.org Review URL: https://codereview.chromium.org/286483004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269974 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 269954 "Merge 263610 "drive: Stop reading child entries i..."hashimoto@chromium.org2014-05-136-97/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | > Merge 263610 "drive: Stop reading child entries in ReadDirectory..." > > > drive: Stop reading child entries in ReadDirectory() when not needed > > > > We should avoid calling ResourceMetadata::ReadDirectoryById when possible because it's costly with large directories. > > > > Change ReadDirectory() to have two callbacks, |entries_callback| and |completion_callback|. > > When |entries_callback| is null, do not call ReadDirectoryById. > > Stop calling ReadDirectoryById in CheckLocalState() > > > > BUG=362087 > > TEST=unit_tests > > > > Review URL: https://codereview.chromium.org/234793003 > > TBR=hashimoto@chromium.org > > Review URL: https://codereview.chromium.org/270593007 TBR=hashimoto@chromium.org Review URL: https://codereview.chromium.org/274563012 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269967 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 263610 "drive: Stop reading child entries in ReadDirectory..."hashimoto@chromium.org2014-05-136-109/+97
| | | | | | | | | | | | | | | | | | | | | > drive: Stop reading child entries in ReadDirectory() when not needed > > We should avoid calling ResourceMetadata::ReadDirectoryById when possible because it's costly with large directories. > > Change ReadDirectory() to have two callbacks, |entries_callback| and |completion_callback|. > When |entries_callback| is null, do not call ReadDirectoryById. > Stop calling ReadDirectoryById in CheckLocalState() > > BUG=362087 > TEST=unit_tests > > Review URL: https://codereview.chromium.org/234793003 TBR=hashimoto@chromium.org Review URL: https://codereview.chromium.org/270593007 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269954 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268371 "base: Increase emulated discardable memory limit."reveman@chromium.org2014-05-131-4/+3
| | | | | | | | | | | | | | | | | | > base: Increase emulated discardable memory limit. > > This increases the limit to 128MB but keeps the limit under moderate > pressure low so the total amount of memory used by chrome is not > significantly increased. > > BUG=368078 > > Review URL: https://codereview.chromium.org/266993003 TBR=reveman@chromium.org Review URL: https://codereview.chromium.org/276563004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269930 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268339 "skia: Remove filter adjustment from PaintSimplifier."reveman@chromium.org2014-05-131-1/+0
| | | | | | | | | | | | | | | | | | | | | > skia: Remove filter adjustment from PaintSimplifier. > > This adjustment to filter quality is not very cache friendly. > Medium or high quality filter is normally used for images and > results are cached using discardable memory. ie. 2000x2000 > scaled to 64x64 only require 16kB to be cached. If the paint > simplifier uses no filter then the cache requirement for good > performance is 15625kB + 16kB instead of just 16kB. > > BUG=368078 > > Review URL: https://codereview.chromium.org/265353002 TBR=reveman@chromium.org Review URL: https://codereview.chromium.org/271823009 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269926 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.112chrome-release@google.com2014-05-131-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269924 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 267147 "Options: Fix handling of dialog checkbox preferences."rlp@chromium.org2014-05-121-1/+3
| | | | | | | | | | | | | | | | | > Options: Fix handling of dialog checkbox preferences. > > The only type of checkbox pref that should be 'primed' to commit is a suggested value which is signified by the checked attribute on the element. > > BUG=359841 > R=rlp > > Review URL: https://codereview.chromium.org/263553003 TBR=jhawkins@chromium.org Review URL: https://codereview.chromium.org/279703004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269877 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269667 "Revert of Android-side of insertion/selection hand..."jdduke@chromium.org2014-05-1210-209/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > Revert of Android-side of insertion/selection handles visibility. (https://codereview.chromium.org/188023002/) > > Reason for revert: > There are a number of cases where this incorrectly hides the selection/insertion > handles in an editable node. > > Original issue's description: > > Android-side of insertion/selection handles visibility. > > > > This patch relies on other two patches: > > https://codereview.chromium.org/177903010/ > > https://codereview.chromium.org/186753002/ > > to correctly compute the visibility of selection and > > insertion handles when editing text input, text area > > and contenteditable elements. > > > > BUG=236033 > > > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=258839 > > BUG=372056 > TBR=tedchoc@chromium.org > > Review URL: https://codereview.chromium.org/278923003 TBR=jdduke@chromium.org Review URL: https://codereview.chromium.org/285573002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269853 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268699 "skia/ext: Add onDrawDRRect to the list of override..."vmpstr@google.com2014-05-122-0/+11
| | | | | | | | | | | | | | | | | | | > skia/ext: Add onDrawDRRect to the list of overrides in AnalysisCanvas. > > Currently, we completely ignore DRRect when analyzing tiles for solid > color. This means that if a tile has a DRRect but otherwise is solid, > we will report it as solid and end up with bad artifacts. > > BUG=363712 > > Review URL: https://codereview.chromium.org/267203002 R=reveman@chromium.org TBR=vmpstr@chromium.org Review URL: https://codereview.chromium.org/282673003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269843 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268895 "Disable prefetch on WiFi. Eventually we'll tie th..."karen@chromium.org2014-05-121-0/+7
| | | | | | | | | | | | | | | > Disable prefetch on WiFi. Eventually we'll tie this to a new Chrome > preference to predict network actions when on cellular connections. > > BUG=370455 > > Review URL: https://codereview.chromium.org/267053008 TBR=jkarlin@chromium.org Review URL: https://codereview.chromium.org/278383003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269834 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.111chrome-release@google.com2014-05-121-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269824 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269064 "New enterprise policy for enabling web-based signi..."guohui@chromium.org2014-05-126-1/+55
| | | | | | | | | | | | | | | | | | | > New enterprise policy for enabling web-based signin flow > > The new policy sets the existing enable-web-based-signin flag. > > See the attached bug for details. > > BUG=368801 > R=asvitkine@chromium.org, atwilson@chromium.org, joaodasilva@chromium.org > > Review URL: https://codereview.chromium.org/268593011 TBR=guohui@chromium.org Review URL: https://codereview.chromium.org/283583002 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269809 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 269802 "Merge 269064 "New enterprise policy for enabling ..."guohui@chromium.org2014-05-126-55/+1
| | | | | | | | | | | | | | | | | | | | | | | | | > Merge 269064 "New enterprise policy for enabling web-based signi..." > > > New enterprise policy for enabling web-based signin flow > > > > The new policy sets the existing enable-web-based-signin flag. > > > > See the attached bug for details. > > > > BUG=368801 > > R=asvitkine@chromium.org, atwilson@chromium.org, joaodasilva@chromium.org > > > > Review URL: https://codereview.chromium.org/268593011 > > TBR=guohui@chromium.org > > Review URL: https://codereview.chromium.org/281433005 TBR=guohui@chromium.org Review URL: https://codereview.chromium.org/284463004 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269807 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 269064 "New enterprise policy for enabling web-based signi..."guohui@chromium.org2014-05-126-1/+55
| | | | | | | | | | | | | | | | | | | > New enterprise policy for enabling web-based signin flow > > The new policy sets the existing enable-web-based-signin flag. > > See the attached bug for details. > > BUG=368801 > R=asvitkine@chromium.org, atwilson@chromium.org, joaodasilva@chromium.org > > Review URL: https://codereview.chromium.org/268593011 TBR=guohui@chromium.org Review URL: https://codereview.chromium.org/281433005 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269802 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268416 "Check for invalid chunk sizes in WAVEDecoder."rtoy@google.com2014-05-121-1/+9
| | | | | | | | | | | | | | | | | | > Check for invalid chunk sizes in WAVEDecoder. > > When reading a chunk from a WAVE file, make sure the specified chunk > size is sensible. That is, the chunk size isn't greater than the size > of the file. > > BUG=369760 > > Review URL: https://codereview.chromium.org/269113003 TBR=rtoy@chromium.org Review URL: https://codereview.chromium.org/276343003 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269799 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 268180 "Fix bug in PrerenderLocalPredictor"tburkard@chromium.org2014-05-121-1/+1
| | | | | | | | | | | | | | | > Fix bug in PrerenderLocalPredictor > Only access sb_manager if it was actually created and is not NULL. > BUG=369494 > R=cbentzel@chromium.org > > Review URL: https://codereview.chromium.org/265273003 TBR=tburkard@chromium.org Review URL: https://codereview.chromium.org/285433005 git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269794 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.110chrome-release@google.com2014-05-121-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269739 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.109chrome-release@google.com2014-05-111-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269697 0039d316-1c4b-4281-b951-d872f2087c98
* Incrementing VERSION to 35.0.1916.108chrome-release@google.com2014-05-101-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/branches/1916/src@269532 0039d316-1c4b-4281-b951-d872f2087c98