- 28 Aug, 2014 10 commits
-
-
mukai authored
The weak fling should be handled and end the gesture session for issue 406197. Also, fling handling turns out to check closest state instead of last_state_. Otherwise there could be a chance to enter an inconsistent state from the visual. Also, the area of "closest to minimized" is too small, so I put 50px static height for this. BUG=406197, 407890 R=oshima@chromium.org TEST=athena_unittests, manually Review URL: https://codereview.chromium.org/507653005 Cr-Commit-Position: refs/heads/master@{#292284}
-
prasadv authored
BUG=394531 NOTRY=true Review URL: https://codereview.chromium.org/512703005 Cr-Commit-Position: refs/heads/master@{#292283}
-
yfriedman authored
https://codereview.chromium.org/499623002/ adds timing diagnostics to DomDistiller. Report histograms for these to help measure real-world perf. Also includes a boolean histogram for distillability based on code from internal repo. Review URL: https://codereview.chromium.org/501553002 Cr-Commit-Position: refs/heads/master@{#292282}
-
fmeawad authored
BUG= Review URL: https://codereview.chromium.org/514453003 Cr-Commit-Position: refs/heads/master@{#292281}
-
jdduke authored
Skia makes no guarantees about the contents of a newly allocated SkBitmap. Consequently, it's possible that the bitmap allocated for the overscroll effect isn't zeroed before the effect itself is painted. Prevent related issues by always clearing the allocated SkBitmap's contents (to fully transparent) before painting the effect. BUG=408225 Review URL: https://codereview.chromium.org/484373004 Cr-Commit-Position: refs/heads/master@{#292280}
-
zeuthen authored
We just added a new error code to ChromeOS's update_engine so also update histograms.xml. BUG=chromium:406546 TEST=Validated the xml, pretty print succeeded. Review URL: https://codereview.chromium.org/514003002 Cr-Commit-Position: refs/heads/master@{#292279}
-
nduca authored
BUG=408294 TBR=dpranke Review URL: https://codereview.chromium.org/510153003 Cr-Commit-Position: refs/heads/master@{#292278}
-
Nico Weber authored
Picks up https://codereview.chromium.org/508343002 BUG=82385 TBR=rnk@chromium.org Review URL: https://codereview.chromium.org/515773002 Cr-Commit-Position: refs/heads/master@{#292277}
-
Albert J. Wong authored
Revert of Adding Select Action Bar Unit test case for input (patchset #3 of https://codereview.chromium.org/506423003/) Reason for revert: Failed compile on Android builders. Original issue's description: > [Android] Add unit tests for SelectActionBar appearance > > The SelectActionBar currently lacks test coverage. Add several test > cases covering the appearance of the bar when interacting with an input > field. > > Committed: https://chromium.googlesource.com/chromium/src/+/0bc56569817a24acea46748c599d77b59157d84d BR=jdduke@chromium.org,aurimas@chromium.org,ajith.v@samsung.com NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/514493004 Cr-Commit-Position: refs/heads/master@{#292276}
-
Viet-Trung Luu authored
(This removes the one place where we did. Sadly, there's no way to assert that a lock isn't held by the current thread.) R=darin@chromium.org Review URL: https://codereview.chromium.org/488003006 Cr-Commit-Position: refs/heads/master@{#292275}
-
- 27 Aug, 2014 30 commits
-
-
rtenneti authored
R=wtc@chromium.org Review URL: https://codereview.chromium.org/511543006 Cr-Commit-Position: refs/heads/master@{#292274}
-
rockot authored
This reverts HidService to a singleton instance, adding two gross and presently hard-to-avoid properties: 1. Its instance getter takes a UI message loop proxy 2. Its lifetime is bound by the message loop of its origin thread The purpose of this is to preserve the necessary threading discipline required by both the chrome.hid API implementation and the permission_broker DBus client while ensuring that the HidService is created and destroyed on the same thread. BUG=401234 Review URL: https://codereview.chromium.org/464753002 Cr-Commit-Position: refs/heads/master@{#292273}
-
estade authored
BUG=403597 Review URL: https://codereview.chromium.org/490193003 Cr-Commit-Position: refs/heads/master@{#292272}
-
orenb authored
BUG=144491 Review URL: https://codereview.chromium.org/440813002 Cr-Commit-Position: refs/heads/master@{#292271}
-
hansmuller authored
Instad of generating exported validateFooRequest(), validateFooResponse() methods, a pointer to a validation functions is added to the generated Stub and Proxy class prototypes. For example, given an interface Foo, with client interface FooClient: FooStub.prototype.validators = [validateFooRequest]; FooProxy.prototype.validators = [validateFooResponse]; Note that if interface Foo has no callbacks, then FooProxy.prototype.validators is an empty array. The router validates incoming messages using these functions and validateMessageHeader(). BUG=407181 Review URL: https://codereview.chromium.org/488173006 Cr-Commit-Position: refs/heads/master@{#292270}
-
tonyg authored
Sysfs related functionality should have never been a separate Platform. There should just be one Platform at a time. BUG= Review URL: https://codereview.chromium.org/509043002 Cr-Commit-Position: refs/heads/master@{#292269}
-
sandersd authored
BUG=405642 Review URL: https://codereview.chromium.org/490033002 Cr-Commit-Position: refs/heads/master@{#292268}
-
eroman authored
BUG=407874,407861 Review URL: https://codereview.chromium.org/507873002 Cr-Commit-Position: refs/heads/master@{#292267}
-
tonyg authored
Revert of Re-enable memory tests. Fixed sign-in issue. (patchset #3 of https://codereview.chromium.org/491863003/) Reason for revert: Failing on bots. Looks like we forgot to commit the archive. Traceback (most recent call last): File "/b/build/slave/Android_Nexus5_Perf/build/src/tools/perf/../telemetry/telemetry/value/failure.py", line 39, in _GetExcInfoFromMessage raise Exception(message) Exception: Page set archive doesn't exist. http://chromegw/i/chromium.perf/builders/Android%20Nexus5%20Perf/builds/1480/steps/memory.mobile_memory/logs/stdio Original issue's description: > Re-enable memory tests. Fixed sign-in issue. > > Re-recording other tests may be required. > > BUG=370977 > > Committed: https://chromium.googlesource.com/chromium/src/+/383ffaab6b5fac34b950d9faaab637cc75907aca TBR=skyostil@chromium.org,starodub@google.com NOTREECHECKS=true NOTRY=true BUG=370977 Review URL: https://codereview.chromium.org/511023002 Cr-Commit-Position: refs/heads/master@{#292266}
-
danakj authored
Currently only one site that deletes a tile removes it from the recycle twin. Change the others to also, or DCHECK showing they don't need to. R=enne, vmpstr Review URL: https://codereview.chromium.org/513903002 Cr-Commit-Position: refs/heads/master@{#292265}
-
oshima authored
* Prep for athena on chrome. Another notable change: * pass app_id to AppActivity. it's known at creation time. Note: this depends on https://codereview.chromium.org/505273002/ BUG=397167 Review URL: https://codereview.chromium.org/501093003 Cr-Commit-Position: refs/heads/master@{#292264}
-
spang authored
The ABS_X and ABS_Y axes are not part of the MT protocol and should therefore not be used to update MT slot positions. The symptom of this was secondary touches warping to the position of the first touch in the X and/or Y axis, since ABS_X/Y always corresponds to the first touch. BUG=407386 TEST=chrome on pixel with --ash-touch-hud NOTRY=true Review URL: https://codereview.chromium.org/506303002 Cr-Commit-Position: refs/heads/master@{#292263}
-
Kenneth Russell authored
John understands the infrastructure at a deep level and will provide good code reviews and nominate others appropriately. BUG=none R=piman@chromium.org Review URL: https://codereview.chromium.org/510173002 Cr-Commit-Position: refs/heads/master@{#292262}
-
Brett Wilson authored
Adds a toolchain variable "concurrent_links". The value of this variable in the default toolchain is used as the depth of the link pool for the build. Remove the "pool" stuff from the tool definitions that was never hooked up. The link pool is hardcoded in GN and is controlled by the above variable. R=scottmg@chromium.org Review URL: https://codereview.chromium.org/508763002 Cr-Commit-Position: refs/heads/master@{#292261}
-
byungchul authored
Android devtools tries open socket twice on same UnixDomainServerSocket instance. Instead of destroying UnixDomainServerSocket instance, not assigning internal listen socket on socket open error is cheaper and makes more sense. BUG=408224 Review URL: https://codereview.chromium.org/515653003 Cr-Commit-Position: refs/heads/master@{#292260}
-
lliabraa authored
sizeWithFont: and drawInRect:withFont:lineBreakMode:alignment: were deprecated in iOS 7. This CL roll GTM to a revision where those methods are no longer used (when building against iOS 7 or later). BUG=405578 Review URL: https://codereview.chromium.org/507333003 Cr-Commit-Position: refs/heads/master@{#292259}
-
miu authored
While attempting to resolve a flaky browser_test, it became clear that AudioMirroringManager was not outliving its use. In the original change that introduced this class, it was instantiated and owned by BrowserMainLoop as a matter of convenience. However, with some debugging, it's clear that it must outlive objects that can outlive BrowserMainLoop (e.g., WebContentsAudioInputStream). Side notes: I've checked the feasibility of other solutions, confirming that the shutdown of AudioManager does NOT guarantee complete teardown of an AudioInputStream, so it's not sufficient to simply change the destruction order of the objects in BrowserMainLoop to resolve this problem. As AudioMirroringManager provides a browser-wide service and owns no objects, it seems reasonable for it to exist as a global LazyInstance. BUG=396413 Review URL: https://codereview.chromium.org/499483003 Cr-Commit-Position: refs/heads/master@{#292258}
-
qinmin authored
Currently chrome creates a file path when uploading a photo taken through camera However, this doesn't always work. Instead, we should use content URI. See more details in the crbug. BUG=405593 Review URL: https://codereview.chromium.org/489053003 Cr-Commit-Position: refs/heads/master@{#292257}
-
Sadrul Habib Chowdhury authored
Plugins are not enabled on android or ios. BUG=none R=brettw@chromium.org Review URL: https://codereview.chromium.org/508823004 Cr-Commit-Position: refs/heads/master@{#292256}
-
newt authored
BUG=398951 Review URL: https://codereview.chromium.org/507133002 Cr-Commit-Position: refs/heads/master@{#292255}
-
mednik authored
BUG=408276 Review URL: https://codereview.chromium.org/513973002 Cr-Commit-Position: refs/heads/master@{#292254}
-
dtu authored
We want to see if it continues to cause flake and noise on the bots. If so, feel free to revert. BUG=336558 TEST=None. R=tonyg Review URL: https://codereview.chromium.org/510143003 Cr-Commit-Position: refs/heads/master@{#292253}
-
ajwong authored
Revert of Adding Select Action Bar Unit test case for input (patchset #3 of https://codereview.chromium.org/506423003/) Reason for revert: See previous review message. Original issue's description: > [Android] Add unit tests for SelectActionBar appearance > > The SelectActionBar currently lacks test coverage. Add several test > cases covering the appearance of the bar when interacting with an input > field. > > Committed: https://chromium.googlesource.com/chromium/src/+/0bc56569817a24acea46748c599d77b59157d84d TBR=jdduke@chromium.org,aurimas@chromium.org,ajith.v@samsung.com NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/510953003 Cr-Commit-Position: refs/heads/master@{#292252}
-
kpschoedel authored
Have ui::KeycodeConverter::NativeKeycode use evdev codes when compiled appropriately. TEST=Manually tested on link_freon. BUG=362698 Review URL: https://codereview.chromium.org/488123004 Cr-Commit-Position: refs/heads/master@{#292251}
-
Brandon Jones authored
This allows us to output the exception message even if no test has explicitly failed. BUG=407976 R=kbr@chromium.org TBR=kbr@chromium.org Review URL: https://codereview.chromium.org/515513003 Cr-Commit-Position: refs/heads/master@{#292250}
-
damienv authored
Before this refactoring, the ES management was left to the ES parser implementation. It is now moved to the EsParser class and ES management now relies explicitly on an ES byte queue. BUG=None Review URL: https://codereview.chromium.org/497203004 Cr-Commit-Position: refs/heads/master@{#292249}
-
ajith.v authored
The SelectActionBar currently lacks test coverage. Add several test cases covering the appearance of the bar when interacting with an input field. Review URL: https://codereview.chromium.org/506423003 Cr-Commit-Position: refs/heads/master@{#292248}
-
ajith.v authored
The SelectActionBar currently lacks test coverage. Add several test cases covering the appearance of the bar when interacting with an input field. Review URL: https://codereview.chromium.org/506423003 Cr-Commit-Position: refs/heads/master@{#292247}
-
hush authored
BUG= Review URL: https://codereview.chromium.org/508233002 Cr-Commit-Position: refs/heads/master@{#292246}
-
stevenjb authored
BUG=279351 For chrome/browser/ui/webui/chromeos/network_config_message_handler.cc: TBR=xiyuan@chromium.org Review URL: https://codereview.chromium.org/492383002 Cr-Commit-Position: refs/heads/master@{#292245}
-