- 13 Aug, 2014 40 commits
-
-
hirono@chromium.org authored
* Assign correct entry for entry-change event. * Assign totalBytes to processedBytes at the end of zipping. * Determine if entries are movable or not by comparing file system. BUG=None TEST=manually Review URL: https://codereview.chromium.org/466583003 Cr-Commit-Position: refs/heads/master@{#289291} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289291 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
BUG=403325 TEST=None NOTRY=true TBR=kalman Review URL: https://codereview.chromium.org/472493002 Cr-Commit-Position: refs/heads/master@{#289290} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289290 0039d316-1c4b-4281-b951-d872f2087c98
-
bengr@chromium.org authored
This CL ensures that data reduction proxy sessions last no longer than 24 hours. After 24 hours and on restart, a new session ID is used. BUG=402563 Review URL: https://codereview.chromium.org/465823002 Cr-Commit-Position: refs/heads/master@{#289289} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289289 0039d316-1c4b-4281-b951-d872f2087c98
-
grunell@chromium.org authored
* Change UMA stats for capture startup to an enum. It retains the meanings of the current (bool) values 0 and 1. * Add values for fail to create and open stream (device). * Remove |enable_nodata_timer| which doesn't have any use. BUG=399835 Review URL: https://codereview.chromium.org/460993002 Cr-Commit-Position: refs/heads/master@{#289288} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289288 0039d316-1c4b-4281-b951-d872f2087c98
-
pmonette@google.com authored
This is added in a separated CL because the linux trybots have trouble with checked in binaries. NOTRY=TRUE BUG=402455 Review URL: https://codereview.chromium.org/463223002 Cr-Commit-Position: refs/heads/master@{#289287} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289287 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
The problem was that MediaStreamDispatcher::IsAudioDuckingActive could return true incorrectly (i.e. when an input device was open but it was not actually opened with ducking enabled - as specified by the application). The reason for this is that the audio effect state as known by MediaStreamDispatcher reflects what the browser side delivers when an audio track has been opened but the browser side had not taken into account the stream options of the request. BUG=391414 Review URL: https://codereview.chromium.org/464923002 Cr-Commit-Position: refs/heads/master@{#289286} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289286 0039d316-1c4b-4281-b951-d872f2087c98
-
zerny@chromium.org authored
Blink GC plugin: Ensure that left-most vtable is the first thing to be initialized for polymorphic classes with trace methods. This is done by ensuring one of two properties for any polymorphic class with a trace method. 1. If the trace method is virtual, then the left-most base class must define a virtual trace method too. 2. If the trace method is non-virtual, then the left-most base class must define some virtual method. BUG=334149 R=ager@chromium.org Review URL: https://codereview.chromium.org/455263004 Cr-Commit-Position: refs/heads/master@{#289285} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289285 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
Building target "chrome:resources" once works, rebuilding it again fails with this error: ninja:error: expected depfile 'gen/chrome/resources_grit.d' to mention 'gen/chrome/grit/common_resources.h', got 'gen/chrome/grit/renderer_resources.h' Making sure the resources targets have unique names fixes this problem. BUG=None R=phajdan.jr@chromium.org, zerny@chromium.org Review URL: https://codereview.chromium.org/466403002 Cr-Commit-Position: refs/heads/master@{#289283} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289283 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
BUG=None TEST=None Review URL: https://codereview.chromium.org/463733003 Cr-Commit-Position: refs/heads/master@{#289281} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289281 0039d316-1c4b-4281-b951-d872f2087c98
-
dnicoara@chromium.org authored
Revert of Run pkg-config for Udev only if use_udev==1 (patchset #1 of https://codereview.chromium.org/429723002/) Reason for revert: Breaks builds where use_udev==0 since certain targets just assume udev and never check against use_udev. Udev package should be wrapped in a use_udev confitional altogether and all the locations using Udev should check against use_udev. Original issue's description: > Run pkg-config for Udev only if use_udev==1 > > Some embedded platforms do not have udev support. The change will skip > running pkg-config if use_udev=0. > > BUG=none > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=288770 TBR=brettw@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/469763002 Cr-Commit-Position: refs/heads/master@{#289280} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289280 0039d316-1c4b-4281-b951-d872f2087c98
-
tnagel@chromium.org authored
BUG=396557 Review URL: https://codereview.chromium.org/424613003 Cr-Commit-Position: refs/heads/master@{#289279} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289279 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Pass systrace categories to chrome_profiler as a comma separated single argument instead of one argument per category. This fixes a bug where only the first category was actually enabled. We also set the output format to JSON because it's not necessary to wrap the resulting systrace into a HTML container as we end up zipping the result anyway. TEST=tools/perf/run_benchmark smoothness.key_mobile_sites --browser=android-chrome --page-filter=linked --profiler=android-systrace Review URL: https://codereview.chromium.org/457823004 Cr-Commit-Position: refs/heads/master@{#289277} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289277 0039d316-1c4b-4281-b951-d872f2087c98
-
ppi@chromium.org authored
http://crrev.com/287864 fixed an issue where a renderer that was killed in background and later reloaded was being respawned with incorrect process visibility, causing it to be killed on Android. The fix skipped resetting the |is_hidden_| flag of RenderWidgetHost, so that RenderWidgetHost crashing in background would retain its visibility status and trigger the ::Show() paths correctly when recreating the View in foreground, fixing the process visibility issues. Unfortunetely, this wasn't that good of an idea. It turns out that while it is the RenderWidgetHost that is the authoritative source of visibility truth that views rely on, it is the view that is responsible for providing signals (WasShown / WasHidden) to the widget host. That means that after a renderer crashes and the view is destroyed, RenderWidgetHost has no way to track its visibility anymore and all bets are off. It turns out that view implementations on Aura and Mac relied on the RenderWidgetHost visibility being reset upon crash (http://crbug.com/401859). Hence, this patch undoes the original "fix" and instead ensures that resetting the |is_hidden_| flag issues a notification for the RenderProcessHost, so that the process visibility signal that we attempted to fix with the original patch is still working. Regression test for http://crbug.com/399521 is in Chrome for Android repo (BindingManagerIntegrationTest). BUG=399521 BUG=401859 Review URL: https://codereview.chromium.org/459613007 Cr-Commit-Position: refs/heads/master@{#289276} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289276 0039d316-1c4b-4281-b951-d872f2087c98
-
jitendra.ks@samsung.com authored
This patch returns the bitmap of the current tab favicon. BUG= Review URL: https://codereview.chromium.org/364793005 Cr-Commit-Position: refs/heads/master@{#289275} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289275 0039d316-1c4b-4281-b951-d872f2087c98
-
henrika@chromium.org authored
The existing DVLOG creates a huge amount of log output when using a */media/*=1 filter. TBR=xians1 BUG=none Review URL: https://codereview.chromium.org/465313002 Cr-Commit-Position: refs/heads/master@{#289274} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289274 0039d316-1c4b-4281-b951-d872f2087c98
-
yukishiino@chromium.org authored
XLookupString depends on user's locale settings (LC_CTYPE). The returned string is encoded in LC_CTYPE, and if the string cannot be respresented in LC_CTYPE, it becomes an empty string. i.e. users cannot input characters. This CL introduces our own map from KeySym (virtual key code in X) to Unicode character. This map works independent from user's locale. BUG=395019 TEST=Done manually. R=sadrul@chromium.org, wez@chromium.org Review URL: https://codereview.chromium.org/430463005 Cr-Commit-Position: refs/heads/master@{#289272} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289272 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
Clear trivially solvable dirty flag in earlier phase than before, so that consecutive local changes doesn't conflict to each other. BUG=344769 TEST=unit_tests --gtest_filter=DriveBackendSyncTest.* Review URL: https://codereview.chromium.org/443793003 Cr-Commit-Position: refs/heads/master@{#289271} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289271 0039d316-1c4b-4281-b951-d872f2087c98
-
wittman@chromium.org authored
Allow enhanced bookmarks external component extensions to be disabled/uninstalled. This facilitates ongoing development and testing of multiple versions of extensions that are ultimately released as external component extensions. BUG=401315 Review URL: https://codereview.chromium.org/445233002 Cr-Commit-Position: refs/heads/master@{#289270} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289270 0039d316-1c4b-4281-b951-d872f2087c98
-
oetuaho@nvidia.com authored
Use ContextCreationAttribHelper through the context creation in both in-process and out-of-process cases, instead of duplicate structures such as GLInProcessContextAttribs. Enums used for serializing the attributes are now defined in only one place, instead of three. Remove small pieces of dead code related to share groups. share_resources_ attrib is removed since it is not in use anywhere. gpu_unittests are changed to better model how bind_generates_resource gets set, and new checks are added to make sure it is set consistently everywhere. TEST=WebGL conformance tests (with and without --in-process-gpu), cc_unittests, gpu_unittests BUG= Review URL: https://codereview.chromium.org/455783002 Cr-Commit-Position: refs/heads/master@{#289269} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289269 0039d316-1c4b-4281-b951-d872f2087c98
-
pneubeck@chromium.org authored
This broke CertLoader initialization (e.g. required for configuring EAP-TLS networks) when a) the device was enterprise enrolled and the user has modified chrome://flags b) the browser crashed and restarted. BUG=399807, 401800 TEST=Enterprise enroll device, modify a flag on chrome://flags, restart, try to configure/connect to an EAP-TLS network with client certificate. Review URL: https://codereview.chromium.org/460423002 Cr-Commit-Position: refs/heads/master@{#289267} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289267 0039d316-1c4b-4281-b951-d872f2087c98
-
e.hakkinen@samsung.com authored
Content is swizzled when texture format has different component order than expected format by platform. RGBA_4444 implies to use 4444 bits and does not affect component order. So, no need to swizzle contents. BUG=399634 Review URL: https://codereview.chromium.org/460563003 Cr-Commit-Position: refs/heads/master@{#289266} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289266 0039d316-1c4b-4281-b951-d872f2087c98
-
kkimlabs@chromium.org authored
BUG=401921 Review URL: https://codereview.chromium.org/454983002 Cr-Commit-Position: refs/heads/master@{#289265} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289265 0039d316-1c4b-4281-b951-d872f2087c98
-
zerny@chromium.org authored
This reapplies r289149: GN: Specify grit generated output paths to be the same as gyp's. together with outstanding CL: https://codereview.chromium.org/467023003/ TBR=brettw@chromium.org,thestig@chromium.org NOTRY=true NOTREECHECKS=true BUG= Review URL: https://codereview.chromium.org/468733003 Cr-Commit-Position: refs/heads/master@{#289264} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289264 0039d316-1c4b-4281-b951-d872f2087c98
-
mostynb@opera.com authored
When CL 430573002 landed, it forced the use of libpci on linux, but many embedded systems lack this library (and probably lack a pci bus altogether). Let's add a new config variable to make it possible to disable the use of libpci. BUG=398416 Review URL: https://codereview.chromium.org/462433002 Cr-Commit-Position: refs/heads/master@{#289262} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289262 0039d316-1c4b-4281-b951-d872f2087c98
-
ajith.v@samsung.com authored
In the current Android code structure, ContentViewCore is just acting as a wrapper to many WebContents functions. In this patch we are trying to position the WebContents functionalities to web_contents_android file from ContentViewCoreImpl to make it functionally readable. Ensuring there is a one-to-one mapping between WebContents Java and native counterparts. BUG=398263 Review URL: https://codereview.chromium.org/414423002 Cr-Commit-Position: refs/heads/master@{#289261} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289261 0039d316-1c4b-4281-b951-d872f2087c98
-
msimonides@opera.com authored
The ChromeExtensionNetworkDelegate::OnBeforeURLRequest is called for new requests as well as for redirects. This results in the lazy keep alive count in extensions to be incremented several times if there is a redirect but then it is decremented only ones when the request finishes. In consequence the lazy extension page never shuts down because the count never reaches zero. With this commit requests that have been redirected at least once are ignored when incrementing the keep alive count. BUG=175279 Review URL: https://codereview.chromium.org/464933002 Cr-Commit-Position: refs/heads/master@{#289260} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289260 0039d316-1c4b-4281-b951-d872f2087c98
-
tbarzic@chromium.org authored
Updated strings for setup error messages Added few new error strings Added strings for "Adding Nth Chromebook" notification Added strings for the screenlock Added strings for setup dialog button label in error state. BUG=393792, 397366, 397532, 402106, 402269, 402584, 401787 TEST=NONE Review URL: https://codereview.chromium.org/452243003 Cr-Commit-Position: refs/heads/master@{#289259} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289259 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
The LocalServerController closes the LocalServer now. Review URL: https://codereview.chromium.org/471443002 Cr-Commit-Position: refs/heads/master@{#289258} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289258 0039d316-1c4b-4281-b951-d872f2087c98
-
jackhou@chromium.org authored
This also fixes the value of [inner|outer]Bounds.[width|height] to account for the border added by AppWindowDesktopWindowTreeHostWin::GetClientAreaInsets BUG=394567, 395929 Review URL: https://codereview.chromium.org/405323002 Cr-Commit-Position: refs/heads/master@{#289257} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289257 0039d316-1c4b-4281-b951-d872f2087c98
-
dmikurube@chromium.org authored
BUG=None TEST=None NOTRY=True Review URL: https://codereview.chromium.org/367593002 Cr-Commit-Position: refs/heads/master@{#289256} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289256 0039d316-1c4b-4281-b951-d872f2087c98
-
dmikurube@chromium.org authored
It's the third step to accept Android's heap profiler discussed in http://crbug.com/382489. BUG=391212 NOTRY=True Review URL: https://codereview.chromium.org/467563002 Cr-Commit-Position: refs/heads/master@{#289255} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289255 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
BUG=None Review URL: https://codereview.chromium.org/457563002 Cr-Commit-Position: refs/heads/master@{#289254} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289254 0039d316-1c4b-4281-b951-d872f2087c98
-
tbarzic@chromium.org authored
BUG=397360 Review URL: https://codereview.chromium.org/466213002 Cr-Commit-Position: refs/heads/master@{#289253} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289253 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
BUG=399311 Review URL: https://codereview.chromium.org/459023002 Cr-Commit-Position: refs/heads/master@{#289252} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289252 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
Cr-Commit-Position: refs/heads/master@{#289251} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289251 0039d316-1c4b-4281-b951-d872f2087c98
-
nduca@chromium.org authored
TBR=dsinclair Review URL: https://codereview.chromium.org/461353002 Cr-Commit-Position: refs/heads/master@{#289250} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289250 0039d316-1c4b-4281-b951-d872f2087c98
-
http://crrev.com/289225joaodasilva@chromium.org authored
TBR=tonyg@chromium.org BUG=None Review URL: https://codereview.chromium.org/469693005 Cr-Commit-Position: refs/heads/master@{#289249} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289249 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
Profile related business is handled by KeywordExtensionsDelegateImpl. BUG=388515 TEST=unit_tests Review URL: https://codereview.chromium.org/460313002 Cr-Commit-Position: refs/heads/master@{#289248} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289248 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
This brings browser_unittest's run time from 21s to 7s on a Z620 Linux, one of our fastest configurations. (We still need 3 browser launches to test browser options and profile loading.) Add BrowserTestCase as the new parent class of TabTestCase. The separation is very clean :) Also add helper method UrlOfUnittestFile - many tests are using http_server.UrlOf incorrectly, and this helper ensures the HTTP server is running and we're pointing to the right file. Also move page_test_test_case from testing/ to unittest/ and remove testing/. BUG=388256 TEST=tools/telemetry/run_tests Review URL: https://codereview.chromium.org/469593002 Cr-Commit-Position: refs/heads/master@{#289247} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289247 0039d316-1c4b-4281-b951-d872f2087c98
-
jackhou@chromium.org authored
OnNativeWindowChanged is normally called when a window's bounds change. However, if an app maximizes via the AppWindow API, but its bounds are the same as that of a maximized window, OnNativeWindowChanged does not end up being called. This CL ensures that OnNativeWindowChanged is called whenever the app maximizes or restores. BUG=395900 Review URL: https://codereview.chromium.org/434343004 Cr-Commit-Position: refs/heads/master@{#289246} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289246 0039d316-1c4b-4281-b951-d872f2087c98
-