- 08 Aug, 2014 40 commits
-
-
stevenjb@chromium.org authored
BUG=401571 Review URL: https://codereview.chromium.org/455533002 Cr-Commit-Position: refs/heads/master@{#288446} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288446 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
Instead of using AudioRendererAlgorithm's timestamp as the ending timestamp and counting "backwards", count "forwards" from a starting timestamp to compute the current media time. Doing so produces more accurate time calculations during periods where the playback rate is changing. last_endpoint_timestamp() is replaced by a new method that computes the amount of contiguous media data buffered by audio hardware. Using this value gives a more accurate maximum time value to use when doing linear interpolation. BUG=367343,370634 Review URL: https://codereview.chromium.org/436053002 Cr-Commit-Position: refs/heads/master@{#288445} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288445 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/423393008/tonyg@chromium.org authored
Reason for revert: BUG=402135 Original issue's description: > Keep a copy of page id in RenderViewHost. > > Also, ensure that it stays in sync with the renderer's copy. > > BUG=99379,369661 > TEST=no CHECKs hit in the wild, all tests stay green > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=288196 TBR=creis@chromium.org,tsepez@chromium.org,nick@chromium.org,avi@chromium.org NOTREECHECKS=true NOTRY=true BUG=99379,369661 Review URL: https://codereview.chromium.org/452303003 Cr-Commit-Position: refs/heads/master@{#288444} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288444 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
Since the hosts are stored in DNS wire format (with length-prefixed labels), any labels that start with a digit cause an escape like "\0071..." (that's length=7, first byte of the label = "1"). But this causes a warning in Visual Studio and breaks the build. This change splits the length bytes from the labels so that this warning doesn't happen. BUG=none R=palmer@chromium.org Review URL: https://codereview.chromium.org/456853002 Cr-Commit-Position: refs/heads/master@{#288443} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288443 0039d316-1c4b-4281-b951-d872f2087c98
-
morrita@chromium.org authored
The error should be reported to IPC::Listener as it is a signal of the dead peer. Without this, the browser cannot detect renderer crashes. TEST=browser_tests (with ChannelMojo enabled) R=viettrungluu@chromium.org,darin@chromium.org BUG=none Review URL: https://codereview.chromium.org/453643003 Cr-Commit-Position: refs/heads/master@{#288442} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288442 0039d316-1c4b-4281-b951-d872f2087c98
-
mef@chromium.org authored
BUG=390267 Review URL: https://codereview.chromium.org/453053002 Cr-Commit-Position: refs/heads/master@{#288441} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288441 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
BUG= TBR=maruel Review URL: https://codereview.chromium.org/458503002 Cr-Commit-Position: refs/heads/master@{#288440} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288440 0039d316-1c4b-4281-b951-d872f2087c98
-
jj-spoon@yandex-team.ru authored
Current implementation assumes that current UI language is the first language on the list. It works now but might break in the future. To avoid that we should select current UI language on left pane before making any checks. R=dbeam@chromium.org Review URL: https://codereview.chromium.org/399353006 Cr-Commit-Position: refs/heads/master@{#288439} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288439 0039d316-1c4b-4281-b951-d872f2087c98
-
chrishtr@chromium.org authored
This makes lookups of a WebPreferences field fast. In order do this, add code to listen to all preferences updates in order to recompute the cache. The first version was rolled back because some code in Blink that listened for inspector prefs updates incorrectly sent the preference update back to Chromium, causing an infinite loop. BUG=390799 Review URL: https://codereview.chromium.org/444843002 Cr-Commit-Position: refs/heads/master@{#288438} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288438 0039d316-1c4b-4281-b951-d872f2087c98
-
garykac@chromium.org authored
This change implements HiDPI scaling of filter params in CC. It also fixes content scaling of filter params (e.g., with -webkit-transform: scale(X)) as well as pinch-zoom scaling. This code is mostly from http://crrev.com/191123002 "Implement hidpi and pinch-zoom scaling of filter params in cc" and replaces http://crrev.com/317663005 "Scale the ALPHA_THRESHOLD filter's region based on the device scale factor" because this fixes all filters rather than just the AlphaThresholdFilter. BUG=376532, 281516, 281518, 349493 R=brettw@chromium.org, danakj@chromium.org, enne@chromium.org, jschuh@chromium.org Review URL: https://codereview.chromium.org/394193003 Cr-Commit-Position: refs/heads/master@{#288436} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288436 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
and ProofVerifierChromium to TransportSecurityState::CheckPublicKeyPins. This required adding an is_issued_by_known_root argument to this method. In addition, CheckPublicKeyPins now only checks static pins if the TransportSecurityState's enable_static_pins_ member is true. This defaults to true only for official desktop builds. This also means that dynamic pins are now checked on mobile and on non-official builds. BUG=398925,391033 Review URL: https://codereview.chromium.org/433123003 Cr-Commit-Position: refs/heads/master@{#288435} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288435 0039d316-1c4b-4281-b951-d872f2087c98
-
kkimlabs@chromium.org authored
BUG=401821 Review URL: https://codereview.chromium.org/455543003 Cr-Commit-Position: refs/heads/master@{#288434} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288434 0039d316-1c4b-4281-b951-d872f2087c98
-
dmichael@chromium.org authored
This test can measure PPP_Messaging performance and indirectly IPC performance. It regressed due to a couple of minor changes; this gets it running again. BUG= Review URL: https://codereview.chromium.org/453003002 Cr-Commit-Position: refs/heads/master@{#288433} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288433 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#288431} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288431 0039d316-1c4b-4281-b951-d872f2087c98
-
rockot@chromium.org authored
This just moves update_manifest.h/cc into the extensions_common target. Precursor to moving manifest parsing code and ultimately the rest of the download/install/update code. BUG=398671 TBR=dcheng@chromium.org for IPC messages (header move only) Review URL: https://codereview.chromium.org/454873005 Cr-Commit-Position: refs/heads/master@{#288430} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288430 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/b511042bb07a6a289b0d1146cb57f6e8b80580d6..be129b26f13d575fd6b396c6ae759838ecc9bd1a CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_layout_rel TBR=bungeman@google.com BUG= Review URL: https://codereview.chromium.org/453653004 Cr-Commit-Position: refs/heads/master@{#288429} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288429 0039d316-1c4b-4281-b951-d872f2087c98
-
ttuttle@chromium.org authored
Add support for configs with domains *.foo.bar. Given a domain foo.bar, it will first look for a config with domain foo.bar, then *.foo.bar, then *.bar. BUG=396139 Review URL: https://codereview.chromium.org/404363003 Cr-Commit-Position: refs/heads/master@{#288428} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288428 0039d316-1c4b-4281-b951-d872f2087c98
-
hanxi@chromium.org authored
Use ExtensionsAPIClient to register guests. BUG=352290 Review URL: https://codereview.chromium.org/444113003 Cr-Commit-Position: refs/heads/master@{#288427} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288427 0039d316-1c4b-4281-b951-d872f2087c98
-
teravest@chromium.org authored
r284961 broke PNaCl on-demand by loading resources retrieved by component_uploader before sending a request to download a user pexe. This change fixes the breakage by only loading resources after we've determined that that there is no cached translated nexe. BUG=401755 R=dmichael@chromium.org, dschuff@chromium.org Review URL: https://codereview.chromium.org/453073002 Cr-Commit-Position: refs/heads/master@{#288426} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288426 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
linux_chromium_rel_swarming seems find, so I'm trying on windows next. BUG=109173 TEST=none R=jam@chromium.org TBR=jam@chromium.org Review URL: https://codereview.chromium.org/454083003 Cr-Commit-Position: refs/heads/master@{#288425} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288425 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
This is shorter, and it allows us to remove two trampoline files on Android (which still weren't updated to trampoline to the 4.8 toolchain and still referred to the 4.6 toolchain instead). No intended visible behavior change. BUG=none Review URL: https://codereview.chromium.org/450843002 Cr-Commit-Position: refs/heads/master@{#288424} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288424 0039d316-1c4b-4281-b951-d872f2087c98
-
achuith@chromium.org authored
Still seeing log spam because we set oem_manifest_loaded_ to true even if the file doesn't exist. Follow-up to r239700 BUG=314793 TEST=remove oem manifest.json - should not see spam in log file. Review URL: https://codereview.chromium.org/448403002 Cr-Commit-Position: refs/heads/master@{#288423} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288423 0039d316-1c4b-4281-b951-d872f2087c98
-
luken@chromium.org authored
> Extend contextMenus API to support browser/page actions > > Screenshot: > http://i.imgur.com/RILqQqe.png > > BUG=234425 > > Review URL: https://codereview.chromium.org/359493005 TBR=gpdavis.chromium@gmail.com Review URL: https://codereview.chromium.org/455023002 Cr-Commit-Position: refs/heads/master@{#288422} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288422 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
R=estade@chromium.org BUG=393489 Review URL: https://codereview.chromium.org/444093003 Cr-Commit-Position: refs/heads/master@{#288421} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288421 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
If the web-page specifies a color using the 'theme-color' meta-tag, then use that color to paint the background of the window-title. Fix the height of the title to be 25px. BUG=401569 R=oshima@chromium.org Review URL: https://codereview.chromium.org/455773003 Cr-Commit-Position: refs/heads/master@{#288420} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288420 0039d316-1c4b-4281-b951-d872f2087c98
-
gpdavis.chromium@gmail.com authored
Screenshot: http://i.imgur.com/RILqQqe.png BUG=234425 Review URL: https://codereview.chromium.org/359493005 Cr-Commit-Position: refs/heads/master@{#288418} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288418 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/406043003/krstnmnlsn@chromium.org authored
(originally reverted because the buildbots weren't pointed to verifier_test_dll.dll by unit_tests.isolate) ========================================================= Adding the VerifyModule function (and helpers) to safe browsing. This function allows us to compare a module in memory with its original on disk, and identify any differences (after accounting for relocations). The state of the module (MODULE_UNKNOWN, MODULE_UNMODIFIED or MODULE_MODIFIED) is returned along with a list of the possibly modified exported functions of the module. BUG=401854 TBR= noelutz@google.com, robertshield@chromium.org, csharp@chromium.org, asvitkine@chromium.org, grt@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/451893003 Cr-Commit-Position: refs/heads/master@{#288417} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288417 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
- Static field names start with s. - static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES. http://source.android.com/source/code-style.html#follow-field-naming-conventions BUG=318404 TBR=qinmin Review URL: https://codereview.chromium.org/455523002 Cr-Commit-Position: refs/heads/master@{#288416} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288416 0039d316-1c4b-4281-b951-d872f2087c98
-
felt@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/456503003 Cr-Commit-Position: refs/heads/master@{#288414} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288414 0039d316-1c4b-4281-b951-d872f2087c98
-
gavinp@chromium.org authored
This new object is implemented in content in both the renderer and browser side. The CacheStorage API methods now pass in to the browser process in the UI thread, where all API calls are failed as not implemented. R=jkarlin@chromium.org,falken@chromium.org,jochen@chromium.org,jschuh@chromium.org BUG=392621 Review URL: https://codereview.chromium.org/379303002 Cr-Commit-Position: refs/heads/master@{#288413} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288413 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
Users can specify the device scale factor for some external displays. Now, it remembers the configured device scale factor to the local storage, and recovers to the specified value when reconnected. This also fixes the bug when the user specifies the resolution and the device scale factor at the same time (DSF was ignored beforehand). BUG=396704 R=oshima@chromium.org TEST=manually, unit_tests Review URL: https://codereview.chromium.org/455443002 Cr-Commit-Position: refs/heads/master@{#288412} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288412 0039d316-1c4b-4281-b951-d872f2087c98
-
andresp@chromium.org authored
BUG=367114 Review URL: https://codereview.chromium.org/453013002 Cr-Commit-Position: refs/heads/master@{#288411} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288411 0039d316-1c4b-4281-b951-d872f2087c98
-
mathp@chromium.org authored
This will only affect the Local NTP (offline). Also, in Local NTP use the @2x version and let Chrome downscale it (recommended way, done on the online NTP). BUG=363519 R=oshima@chromium.org Review URL: https://codereview.chromium.org/450313002 Cr-Commit-Position: refs/heads/master@{#288409} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288409 0039d316-1c4b-4281-b951-d872f2087c98
-
noyau@chromium.org authored
These utility functions are used on iOS and Android. BUG=None Review URL: https://codereview.chromium.org/452913002 Cr-Commit-Position: refs/heads/master@{#288408} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288408 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
This is a step towards allowing WebUI to directly embed guest views. BUG=386838 R=fsamuel@chromium.org Review URL: https://codereview.chromium.org/426593007 Cr-Commit-Position: refs/heads/master@{#288407} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288407 0039d316-1c4b-4281-b951-d872f2087c98
-
creis@chromium.org authored
This could happen in cases where we initiate a transfer but end up navigating in the original SiteInstance. BUG=402018 TEST=No proxy host for the current RFH after navigating an about:blank tab. Review URL: https://codereview.chromium.org/452673002 Cr-Commit-Position: refs/heads/master@{#288406} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288406 0039d316-1c4b-4281-b951-d872f2087c98
-
ajith.v@samsung.com authored
Normally, the paste popup is hidden when its position changes. However, there are legitimate cases outside of scrolling where the position may change, e.g., due to a resize, where the popup should remain visible. Handle this case by only hiding the popup if its position changes while scrolling. BUG=380084 Review URL: https://codereview.chromium.org/312293002 Cr-Commit-Position: refs/heads/master@{#288404} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288404 0039d316-1c4b-4281-b951-d872f2087c98
-
hartmanng@chromium.org authored
We can miss applying a transform if we have a transformed, partially occluded DelegatedRendererLayerImpl with a contributing RenderPass. This causes the wrong transform to be sent into the occlusion tracker, so occlusion gets applied incorrectly, which hides desired content. BUG=379072,390873 Review URL: https://codereview.chromium.org/447193005 Cr-Commit-Position: refs/heads/master@{#288403} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288403 0039d316-1c4b-4281-b951-d872f2087c98
-
alekseys@chromium.org authored
BUG=401344 Review URL: https://codereview.chromium.org/447963005 Cr-Commit-Position: refs/heads/master@{#288402} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288402 0039d316-1c4b-4281-b951-d872f2087c98
-
felt@chromium.org authored
According to Alan, the shadow on the SSL warning illustration was 1px off. This updates the pngs. BUG=401289 R=bauerb@chromium.org Review URL: https://codereview.chromium.org/457433002 Cr-Commit-Position: refs/heads/master@{#288401} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288401 0039d316-1c4b-4281-b951-d872f2087c98
-