- 16 Aug, 2014 5 commits
-
-
spang@chromium.org authored
BUG=none TEST=build Review URL: https://codereview.chromium.org/471163004 Cr-Commit-Position: refs/heads/master@{#290062} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290062 0039d316-1c4b-4281-b951-d872f2087c98
-
rpaquay@chromium.org authored
With the recent device polling changes (https://codereview.chromium.org/424093004/), any failure in enumerating devices/services prevents the background polling task from reporting changes (to avoid reporting inconsistent configuration). However, when devices are offline and polling is done in "discovery" mode, enumerating services fails because the underlying SDP request fails. The workaround if to ask for cached services only instead, so that at least the services already previously known are returned and the polling operation can succeed. BUG=396337 Review URL: https://codereview.chromium.org/476823003 Cr-Commit-Position: refs/heads/master@{#290061} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290061 0039d316-1c4b-4281-b951-d872f2087c98
-
jeun@chromium.org authored
normalization was not working properly. BUG= NOTRY=true Review URL: https://codereview.chromium.org/468653003 Cr-Commit-Position: refs/heads/master@{#290060} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290060 0039d316-1c4b-4281-b951-d872f2087c98
-
mpearson@chromium.org authored
Calls to the suggest server may normally result in a new inline autocompletion. This can be disruptive because it means pressing enter may bring the user to different places depending on how long he/she waits after typing the last key. This change prevents new suggestions from becoming the default match. In other words, the default match is only allowed to change on a keystroke, not due to a reply coming back from the server. The consequence of this change is that if previously we'd show an inline suggestion on a server reply, now we only show it one keystroke later. I think this trade-off (one keystroke versus inconsistent omnibox behavior) is a good one to make. We still end up with default matches (inline autocompletions within the omnibox) from the suggest server after this change. Here's an example of why: User types "facebo" We send a suggest server request. Server asynchronously returns "facebook" as a top suggestion, beating the server-provided verbatim score for "facebo". We decide not to show it within the omnibox. It's instead shown somewhere in the dropdown. User types "o". We send a suggest server request. We reuse our cached suggestions and suggestion scores. <<< THE KEY We show "facebook" as an inline suggestion because it beats the default verbatim score that gets assigned to "faceboo". (This is the score that we assign by default without having yet received the most recent suggest server response.) We receive the response, which includes "facebook" as a top suggestion, beating the server-provided verbatim score for "faceboo". We show "facebook" as an inline suggestion. i.e., we decide not to demote it because it was already being shown inline TESTED: unit tests plus interactive tests (facebook.com/l, google.com/a) BUG=398135 R=msw@chromium.org Review URL: https://codereview.chromium.org/471673002 Cr-Commit-Position: refs/heads/master@{#290058} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290058 0039d316-1c4b-4281-b951-d872f2087c98
-
gcasto@chromium.org authored
By default there is no change in behavior, but autofilling can now be disabled for the sync credential entirely or just disabled for reauth pages that support transactional reauth. Note that this also changes GetSyncUsername() to not return the username if password sync is disabled if it is possible to determine. This makes GetSyncUsername() a little inconsistent depending on the state of sync setup, but it's important to be as specific as possible when disabling autofilling, since it's a usability hit. BUG=386692 R=isherman@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=290030 Review URL: https://codereview.chromium.org/451853003 Cr-Commit-Position: refs/heads/master@{#290057} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290057 0039d316-1c4b-4281-b951-d872f2087c98
-
- 15 Aug, 2014 35 commits
-
-
noms@chromium.org authored
BUG=401834 Review URL: https://codereview.chromium.org/471703002 Cr-Commit-Position: refs/heads/master@{#290055} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290055 0039d316-1c4b-4281-b951-d872f2087c98
-
kundaji@chromium.org authored
Use it to log error type in BypassOneNetworkError UMA. This fixes DataReductionProxy.BypassOnNetworkError UMA recording bug. BUG=395769 Review URL: https://codereview.chromium.org/473513002 Cr-Commit-Position: refs/heads/master@{#290054} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290054 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
added in r288784 but the schema missed out. BUG=388164 R=jsbell@chromium.org Review URL: https://codereview.chromium.org/476243003 Cr-Commit-Position: refs/heads/master@{#290053} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290053 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
Add an overscroll effect implementation that mimics that of Android L. The primary differences are the use of a single rasterized arc layer and the inclusion of motion orthogonal to overscroll in computing the effect offset. BUG=389744 Review URL: https://codereview.chromium.org/367173003 Cr-Commit-Position: refs/heads/master@{#290052} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290052 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
R=scottmg@chromium.org Review URL: https://codereview.chromium.org/482433002 Cr-Commit-Position: refs/heads/master@{#290051} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290051 0039d316-1c4b-4281-b951-d872f2087c98
-
timvolodine@chromium.org authored
Revert of Battery Status API: implementation for Windows. (patchset #5 of https://codereview.chromium.org/447853002/) Reason for revert: breaking XP Original issue's description: > Battery Status API: implementation for Windows. > > Implementation of the Battery Status API for the Windows platform. > Implementation uses a message window to receive battery notifications. > On versions prior to Vista there is limited support as the > RegisterPowerSettingNotification function is not available. > > BUG=122593 > TEST=http://jsbin.com/battery-status-test (manual) > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289634 TBR=mvanouwerkerk@chromium.org,mlamouri@chromium.org,scottmg@chromium.org,cpu@chromium.org NOTREECHECKS=true NOTRY=true BUG=122593 Review URL: https://codereview.chromium.org/481493002 Cr-Commit-Position: refs/heads/master@{#290050} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290050 0039d316-1c4b-4281-b951-d872f2087c98
-
michaelpg@chromium.org authored
BrowserOptionsOverlayWebUITest.testNavigationInBackground fails on DrMemory bots: http://build.chromium.org/p/chromium.memory.fyi/builders/Windows%20Browser%20%28DrMemory%20full%29%20%2811%29/builds/476 This changes the test to wait if it detects that the appropriate message has not yet been sent to the uber page. This ensures that we are only testing the finalized state of the page. If the test times out, that would indicate that the problem lies elsewhere. BUG=403627 R=estade@chromium.org Review URL: https://codereview.chromium.org/476573002 Cr-Commit-Position: refs/heads/master@{#290049} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290049 0039d316-1c4b-4281-b951-d872f2087c98
-
alemate@chromium.org authored
We need input methods "config" object to switch between IME states. This CL also fixed issue with incorrect input method after screen unlock in multiprofile mode. BUG=292774,399129 TEST=manual TBR=nona@chromium.org,asargent@chromium.org,davemoore@chromium.org Review URL: https://codereview.chromium.org/419293002 Cr-Commit-Position: refs/heads/master@{#290048} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290048 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/472213002 Cr-Commit-Position: refs/heads/master@{#290046} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290046 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
This caused a tree closure due to unit_tests failure: http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Tests%20%281%29/builds/47244 > [Password Manager] Setup experiment to restrict autofilling of sync credential > > By default there is no change in behavior, but autofilling can now be disabled > for the sync credential entirely or just disabled for reauth pages that support > transactional reauth. > > Note that this also changes GetSyncUsername() to not return the username if > password sync is disabled if it is possible to determine. This makes GetSyncUsername() a little inconsistent depending on the state of sync setup, but it's important to be as specific as possible when disabling autofilling, since it's a > usability hit. > > BUG=386692 > R=isherman@chromium.org > > Review URL: https://codereview.chromium.org/451853003 TBR=gcasto@chromium.org Review URL: https://codereview.chromium.org/477273003 Cr-Commit-Position: refs/heads/master@{#290045} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290045 0039d316-1c4b-4281-b951-d872f2087c98
-
pneubeck@chromium.org authored
If a network was configured with a client certificate before R38, the slot ID will either be missing or not be valid in R38 and later because of the added device wide token. This migration code will look up a configured client certificate by its PKCS#11 ID and update the slot id. If the certificate can't be found, the client configuration will be removed in order to trigger a clean 'missing configuration' error in the UI. This change is primarily targeted for manually configured networks and not policy-configured networks. The latter are automatically updated by the chromeos::ClientCertResolver. BUG=403900 Review URL: https://codereview.chromium.org/471183002 Cr-Commit-Position: refs/heads/master@{#290044} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290044 0039d316-1c4b-4281-b951-d872f2087c98
-
haitaol@chromium.org authored
BUG=362679 Review URL: https://codereview.chromium.org/481473002 Cr-Commit-Position: refs/heads/master@{#290043} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290043 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#290042} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290042 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
$ git log bbf1fcca7..b8aeeaef0 --date=short --format='%ad %ae %s' | sed 's/@chromium\.org//' 2014-08-15 maruel Greatly improve subprocess42. 2014-08-15 maruel Fix parallel_execution which would pass the wrong argument in case of error. 2014-08-15 maruel Fix bugs in run_swarming_tests_on_swarming.py. 2014-08-15 maruel R.I.P. googletest/ 2014-08-15 maruel Add callback support in net_utils.py when evaluation http request mock. 2014-08-14 maruel Fix third regression introduced in 0a62061f6e8e3f. 2014-08-13 maruel Fix second regression introduced in 0a62061f6e8e3f. 2014-08-13 maruel Fix regression introduced in 0a62061f6e8e3f. 2014-08-13 maruel Make json API url request saner. 2014-08-06 maruel Add .mp4 as already-compressed extension. R=csharp@chromium.org BUG= Review URL: https://codereview.chromium.org/481523002 Cr-Commit-Position: refs/heads/master@{#290041} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290041 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
Preloading the plugin starts NaCl translator, which saves time when the user tries to connect. Review URL: https://codereview.chromium.org/467903002 Cr-Commit-Position: refs/heads/master@{#290040} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290040 0039d316-1c4b-4281-b951-d872f2087c98
-
gpdavis.chromium@gmail.com authored
BUG=391922 Review URL: https://codereview.chromium.org/396033002 Cr-Commit-Position: refs/heads/master@{#290039} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290039 0039d316-1c4b-4281-b951-d872f2087c98
-
miu@chromium.org authored
Revert of Move sqlite_channel_id_store from chrome/browser/net to net/extras. (patchset #26 of https://codereview.chromium.org/381073002/) Reason for revert: Closed the tree on failing net_unittests: http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=32912 Original issue's description: > Move sqlite_channel_id_store from chrome/browser/net to net/extras. > Application of special storage policy is split out into chrome/browser/net/quota_policy_channel_id_store. > > TEST=net_unittests --gtest_filter=SQLiteChannelIDStoreTest* > TEST=unit_tests --gtest_filter=QuotaPolicyChannelIDStore* > > BUG=397545 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289996 TBR=mef@chromium.org NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/477253002 Cr-Commit-Position: refs/heads/master@{#290038} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290038 0039d316-1c4b-4281-b951-d872f2087c98
-
qyearsley@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/429763003 Cr-Commit-Position: refs/heads/master@{#290037} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290037 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
- Add edge menu bg assets for tablets. - Add back the vertical offset to properly line up this offset BUG=400549 NOTRY=true Review URL: https://codereview.chromium.org/466993002 Cr-Commit-Position: refs/heads/master@{#290036} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290036 0039d316-1c4b-4281-b951-d872f2087c98
-
dcaiafa@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/475333004 Cr-Commit-Position: refs/heads/master@{#290035} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290035 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#290034} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290034 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=180329:180365&mode=html TBR=adamk@chromium.org,mkwst@chromium.org BUG= Review URL: https://codereview.chromium.org/480523002 Cr-Commit-Position: refs/heads/master@{#290033} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290033 0039d316-1c4b-4281-b951-d872f2087c98
-
guohui@chromium.org authored
2. show new confirmation bubble when signing in from the new avatar menu and a modal warning dialog is displayed BUG=402130, 402423 R=asvitkine@chromium.org, rogerta@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/471023003 Cr-Commit-Position: refs/heads/master@{#290032} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290032 0039d316-1c4b-4281-b951-d872f2087c98
-
jwd@chromium.org authored
BUG=404187 Review URL: https://codereview.chromium.org/478753002 Cr-Commit-Position: refs/heads/master@{#290031} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290031 0039d316-1c4b-4281-b951-d872f2087c98
-
gcasto@chromium.org authored
By default there is no change in behavior, but autofilling can now be disabled for the sync credential entirely or just disabled for reauth pages that support transactional reauth. Note that this also changes GetSyncUsername() to not return the username if password sync is disabled if it is possible to determine. This makes GetSyncUsername() a little inconsistent depending on the state of sync setup, but it's important to be as specific as possible when disabling autofilling, since it's a usability hit. BUG=386692 R=isherman@chromium.org Review URL: https://codereview.chromium.org/451853003 Cr-Commit-Position: refs/heads/master@{#290030} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290030 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
Before r272790 the host was sending empty packets 30 times a second when nothing is changing on the screen. After that change and r281677 the frequency was decreased to 5 frame per second. It looks like those changes degraded performance for some users. This change partially restores previous behavior. Empty packets are send for each captured frame even when nothing is changing on the screen. Keep-alive packets are sent every 200ms when there are no other video packets, e.g. when the video stream is paused. Review URL: https://codereview.chromium.org/477103004 Cr-Commit-Position: refs/heads/master@{#290028} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290028 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
As a boosted fling may suppress a new scroll sequence in anticipation of a follow-up fling event, it's important that scrolling properly resume if the boosted fling terminates during said suppressed scroll. Normally, a synthetic GestureScrollBegin is used to kickstart the scroll in such cases. However, if the fling naturally terminates by either overscrolling or ticking beyond its lifetime, we failed to resume touch scrolling. This led to unexpected cases where a GestureScrollUpdate would be processed without an antecedent GestureScrollBegin. Address this by always inserting the appropriate synthetic GestureScrollBegin if the fling terminates for any reason. BUG=402077 Review URL: https://codereview.chromium.org/473053002 Cr-Commit-Position: refs/heads/master@{#290027} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290027 0039d316-1c4b-4281-b951-d872f2087c98
-
pmonette@google.com authored
the library was not freed at the end of the test. Another unrelated unit test was expecting the dll to not be loaded. Using GetModuleHandle now to avoid the ref count increment. BUG=401854 Review URL: https://codereview.chromium.org/471223002 Cr-Commit-Position: refs/heads/master@{#290025} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290025 0039d316-1c4b-4281-b951-d872f2087c98
-
noms@chromium.org authored
- remove the border radius on the tray bar items, as it makes the divider look rounded - fix the font size so that the background isn't clipped (header-bar-item inherited the wrong font size from body) See bugs for screenshots of the original problems BUG=402964,402960 Review URL: https://codereview.chromium.org/476253002 Cr-Commit-Position: refs/heads/master@{#290024} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290024 0039d316-1c4b-4281-b951-d872f2087c98
-
hubbe@chromium.org authored
The previous algorithm was limited to jumps of ~64, the new algorithm can handle jumps of ~127. Review URL: https://codereview.chromium.org/458313003 Cr-Commit-Position: refs/heads/master@{#290023} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290023 0039d316-1c4b-4281-b951-d872f2087c98
-
gunsch@chromium.org authored
Chromecast application cache is disabled due to storage constraints on device flash. Aside: removes "enable-webrtc-hw-decoding", which doesn't exist, and "enable-threaded-compositing", which is now enabled by default. R=lcwu@chromium.org,damienv@chromium.org BUG=336640 Review URL: https://codereview.chromium.org/468223004 Cr-Commit-Position: refs/heads/master@{#290022} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290022 0039d316-1c4b-4281-b951-d872f2087c98
-
noms@chromium.org authored
- remove the profile preference that used to keep track of showing the tutorial any time the user manager was shown for a particular profile. - show the upgrade bubble for local profiles as well (so that local profiles have a chance to see the tutorial) - for the local profiles upgrade bubble, don't show the "Not you?" link as it doesn't really make sense. BUG=399679 TBR=rpetterson@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=288817 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289005 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=289636 Review URL: https://codereview.chromium.org/454153002 Cr-Commit-Position: refs/heads/master@{#290021} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290021 0039d316-1c4b-4281-b951-d872f2087c98
-
jbudorick@chromium.org authored
BUG=401163 Review URL: https://codereview.chromium.org/477953002 Cr-Commit-Position: refs/heads/master@{#290020} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290020 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
- Add API to get/set/clear the pairing info into user prefs; - Add an onTurnFlowFinished event so that the app can clear its state; - Extend EasyUnlockService to store pairing info and provide turn-off flow support; - Update settings UI to trigger turn off flow and observe the turn-off flow status to show pending/error or dismiss when done; - Add EasyUnlockToggleFlow to wrap api calls to server; - Update OAuth2ApiFlow to support application/json content-type and handle 204 as success; BUG=397356,394640 Review URL: https://codereview.chromium.org/475483003 Cr-Commit-Position: refs/heads/master@{#290019} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290019 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
Change how QUIC negotiates pacing from congestion feedback to QUIC connection option. Merge internal change: 73061068 https://codereview.chromium.org/471613002/ Add max_bandwidth and max_bandwidth_timestamp to QUIC source address token. Merge internal change: 73055131 https://codereview.chromium.org/463093003/ Don't print (SCUP) in log message, the DebugString that follows contains this already. Merge internal change: 73054570 https://codereview.chromium.org/464893003/ Do not support Quic timestamp feedback type in the framer. Merge internal change: 72905602 https://codereview.chromium.org/467893002/ Change QUIC's delayed ack timer from 100ms to 25ms. Rationale: This delay kicks in when the receiver is waiting for a second data packet before sending an ack, and 100ms seems inordinately long for this wait. The timer fires per-packet in low-bandwidth network paths (BW < ~384 kbps), where more frequent acks helps with (i) ack clocking, and (ii) better bw estimation for BBR. Merge internal change: 72788368 https://codereview.chromium.org/461183002/ QUIC - clean up changes to keep in sync with internal source tree. https://codereview.chromium.org/454263002/ R=rch@chromium.org TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/471293002 Cr-Commit-Position: refs/heads/master@{#290018} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290018 0039d316-1c4b-4281-b951-d872f2087c98
-