- 11 Sep, 2014 40 commits
-
-
tfarina authored
Looks like nobody is using this script? Checked in Chromium, Blink and Buildbot repos. BUG=338338 TEST=None R=dpranke@chromium.org Review URL: https://codereview.chromium.org/562813003 Cr-Commit-Position: refs/heads/master@{#294456}
-
achuith authored
BUG=398467 TEST=ExtensionTest Review URL: https://codereview.chromium.org/556003005 Cr-Commit-Position: refs/heads/master@{#294455}
-
pneubeck authored
Also change from the observer pattern to the simpler callback pattern, as there is only a single notification type (TPM is enabled/disabled). This simplifies ownership of the observer/receiver especially if multiple threads (typically UI and IO) are involved: A temporary callback with a WeakPtr can be used instead of an observer object that has to be owned by someone. BUG=413219 Review URL: https://codereview.chromium.org/567553002 Cr-Commit-Position: refs/heads/master@{#294454}
-
nyquist authored
Since the introduction of nano protobufs for Java in https://codereview.chromium.org/532303003 (and updated in https://codereview.chromium.org/549543002), there is no need for the lite protocol buffers anymore. This CL removes the checked out files initially introduced when protobuf lite support for Java was added in https://chromiumcodereview.appspot.com/11347026 and cleans up the infrastructure regarding generating protocol buffers. Since lite is not supported anymore, this also removes the requirement for setting the 'proto_runtime' variable for targets using build/protoc_java.gypi. BUG=377891 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/556933002 Cr-Commit-Position: refs/heads/master@{#294453}
-
tsepez authored
Review URL: https://codereview.chromium.org/551043004 Cr-Commit-Position: refs/heads/master@{#294452}
-
kmarshall authored
R=wez BUG= Review URL: https://codereview.chromium.org/563003002 Cr-Commit-Position: refs/heads/master@{#294451}
-
andresantoso authored
This was recently broken by https://codereview.chromium.org/476313003/. The problem is that when opening a new window, the fullscreen button was not enabled yet by the time we layout the profile button. We need to call layoutSubviews after the fullscreen button is enabled because the avatar button's position depends on it. But with the old avatar button, we need to call layoutSubviews first because the fullscreen button's position depends on it. BUG=412018 Review URL: https://codereview.chromium.org/567713002 Cr-Commit-Position: refs/heads/master@{#294450}
-
danakj authored
This will disable low res tilings on all platforms but android, since RenderWidgetCompositor only sets this to true on android. R=vmpstr BUG=410610 Review URL: https://codereview.chromium.org/563723004 Cr-Commit-Position: refs/heads/master@{#294449}
-
estade authored
BUG=409349 Review URL: https://codereview.chromium.org/531873002 Cr-Commit-Position: refs/heads/master@{#294448}
-
spang authored
NOTRY=true Review URL: https://codereview.chromium.org/559713004 Cr-Commit-Position: refs/heads/master@{#294447}
-
spang authored
All of the subclasses do the same thing for the polling part, so share it. Not all of them use DispatchEventToCallback, so remove that part. NOTRY=true Review URL: https://codereview.chromium.org/561243002 Cr-Commit-Position: refs/heads/master@{#294446}
-
dmazzoni authored
BUG=314889 Review URL: https://codereview.chromium.org/537893003 Cr-Commit-Position: refs/heads/master@{#294445}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/33a30503d76fdd989358cedd78445ba96bb809dd..790ffe3feb90370318f42b28eb9c6af6e38cd4f9 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=fmalita@google.com Review URL: https://codereview.chromium.org/564913002 Cr-Commit-Position: refs/heads/master@{#294444}
-
fsamuel authored
This is a useful debug aid and better matches the behavior of tabs. BUG=none Review URL: https://codereview.chromium.org/564933002 Cr-Commit-Position: refs/heads/master@{#294443}
-
gcasto authored
BUG=347777 Review URL: https://codereview.chromium.org/538173002 Cr-Commit-Position: refs/heads/master@{#294442}
-
jmedley authored
BUG=none R= TEST=none NOTRY=true (documentation only change) Review URL: https://codereview.chromium.org/549043004 Cr-Commit-Position: refs/heads/master@{#294441}
-
xhwang authored
Review URL: https://codereview.chromium.org/560253002 Cr-Commit-Position: refs/heads/master@{#294440}
-
morrita authored
There are a few MessagePipeReader sublcasses defined as inter-classes of ChannelMojo. This makes it harder to hook them for unit testing. This CL moves these classes their own file. Now unittest can define subclasses of these to hook some behavor for testing. This is a preparation for a crash fix. BUG=410813 TEST=none R=viettrungluu@chromium.org,yzshen@chromium.org Review URL: https://codereview.chromium.org/559723002 Cr-Commit-Position: refs/heads/master@{#294439}
-
pneubeck authored
BUG=411927 Review URL: https://codereview.chromium.org/556243003 Cr-Commit-Position: refs/heads/master@{#294438}
-
wjmaclean authored
This is a simple move, except that we move three functions out of chrome/browser/extensions/api/web_request/web_request_api_helpers to extensions/browser/api/web_request/web_request_api_utils in order to remove the chrome/ dependency. A new namespace is introduced to avoid confusion. BUG=352293. Review URL: https://codereview.chromium.org/562913002 Cr-Commit-Position: refs/heads/master@{#294437}
-
brettw authored
When printing dependency cycles, the old meticulously walked the list backwards and explained that this was because the list was in the reverse order of the dependencies. This is wrong, the list is in the normal forward direction and doing that prints out the reverse cycle which is very confusing. Reverse the order of printing to get the correct cycle. Review URL: https://codereview.chromium.org/557103003 Cr-Commit-Position: refs/heads/master@{#294436}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/f00fc1e323c6f7222c9a394187567b43e8589dc5..5af3948f23b6954c5f76bac93474432805751cae TBR=jianli@chromium.org,loislo@chromium.org Review URL: https://codereview.chromium.org/561133006 Cr-Commit-Position: refs/heads/master@{#294435}
-
lliabraa authored
As a temporary solution, use 2x assets on 3x screens. BUG=413300 Review URL: https://codereview.chromium.org/563713003 Cr-Commit-Position: refs/heads/master@{#294434}
-
oshima authored
BUG=None TBR=dpolukhin@chromium.org Review URL: https://codereview.chromium.org/561283002 Cr-Commit-Position: refs/heads/master@{#294433}
-
avi authored
This reverts commit 86823cbf. BUG=407376 TBR=rsesek@chromium.org Review URL: https://codereview.chromium.org/566593002 Cr-Commit-Position: refs/heads/master@{#294432}
-
nasko authored
Revert of Reenable DevToolsSanityTest.TestDeviceEmulation. (patchset #1 id:1 of https://codereview.chromium.org/564763002/) Reason for revert: Fails on the main waterfall on Windows and Linux: https://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20(dbg)(2)/builds/22510 https://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20(dbg)(1)/builds/33246 Original issue's description: > Reenable DevToolsSanityTest.TestDeviceEmulation. > > BUG=397889 > TBR=pfeldman@chromium.org > > Committed: https://crrev.com/8844a8eba4465ff5f66bff5b7db195a0192625c3 > Cr-Commit-Position: refs/heads/master@{#294375} TBR=pfeldman@chromium.org,dgozman@chromium.org NOTREECHECKS=true NOTRY=true BUG=397889 Review URL: https://codereview.chromium.org/562343002 Cr-Commit-Position: refs/heads/master@{#294431}
-
mukai authored
BUG=387077, 387079 R=bauerb@chromium.org, jochen@chromium.org, markusheintz@chromium.org TBR=abarth@chromium.org TEST=build succeeds / components_unittests Review URL: https://codereview.chromium.org/541813002 Cr-Commit-Position: refs/heads/master@{#294430}
-
mohsen authored
When a window is being transformed, position of touch selection handles might not be valid anymore, hence deactivating touch selection. BUG=407659 Review URL: https://codereview.chromium.org/551883002 Cr-Commit-Position: refs/heads/master@{#294429}
-
stgao authored
NOTRY=true Review URL: https://codereview.chromium.org/551433003 Cr-Commit-Position: refs/heads/master@{#294428}
-
henriks authored
BUG=413214 R=acolwell@chromium.org Review URL: https://codereview.chromium.org/563773002 Cr-Commit-Position: refs/heads/master@{#294427}
-
cmasone authored
OS_CHROMEOS is defined in //build/config/linux:sdk per brettw recommendation. Typo fixed in ui/ozone/BUILD.gn Some source-list fixes in content/browser/BUILD.gn that take both use_x11 and use_ozone into account. BUG=None TEST=None Review URL: https://codereview.chromium.org/558343002 Cr-Commit-Position: refs/heads/master@{#294426}
-
rch authored
Fix a bug when a QUIC session is closed during the call to InitializeSession. This seems to be able to happen if too much time elapses between the call to the constructor and the call to InitializeSession. Also adds a histogram to monitor the frequency of this situation. BUG=399147 Review URL: https://codereview.chromium.org/560913002 Cr-Commit-Position: refs/heads/master@{#294425}
-
Brett Wilson authored
Remove explicitly depending on a webrtc config now that it is correctly exported from webrtc. R=kjellander@chromium.org Review URL: https://codereview.chromium.org/534813002 Cr-Commit-Position: refs/heads/master@{#294424}
-
mtklein authored
This is our first attempt, mostly to feel this out. Performance and correctness problems are both possible. Please revert this if a benchmark even smells funny. That said, we've been working on this a while, are pretty confident it's good stuff, and have had Skia's internal testing entirely switched over for a week. Parts of Chromium that serialize and deserialize SkPictures are already switched over. This CL finishes things off by switching the default recorded-from-scratch SkPicture to use SkRecord too. BUG=408985,409110,409138 Committed: https://chromium.googlesource.com/chromium/src/+/f7450daaf38f4951b23fabaaaf659c6af33a705c Committed: https://chromium.googlesource.com/chromium/src/+/5f2a6ab31313eb2fc6e456f65c3863a77d2d0c30 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg;tryserver.chromium.linux:linux_browser_asan Committed: https://chromium.googlesource.com/chromium/src/+/130033d6c732af90ed117f05517e4efffd23ae58 Committed: https://crrev.com/ba819aea3f302d89100dc89632fd225a40e65411 Cr-Commit-Position: refs/heads/master@{#293503} Review URL: https://codereview.chromium.org/504823003 Cr-Commit-Position: refs/heads/master@{#294423}
-
Julien Tinnes authored
In the baseline policy, we restrict setpriority() to |which| == PRIO_PROCESS and (|who| == 0) || (|who| == current_pid). This doesn't affect most policies which allow setpriority() unconditionally but allows baseline unittests to pass on Android. BUG=398611, 399473 R=mdempsky@chromium.org Review URL: https://codereview.chromium.org/430363003 Cr-Commit-Position: refs/heads/master@{#294422}
-
rsesek authored
Revert of [Mac] Shut down connections to WindowServer before engaging the sandbox. (patchset #1 id:20001 of https://codereview.chromium.org/561833006/) Reason for revert: Possibly caused blink test failures. Original issue's description: > [Mac] Shut down connections to WindowServer before engaging the sandbox. > > The connection is only needed during sandbox warmup to initialize the default > color space. It was formerly needed by scrollbar NSAnimations, but that was > replaced via https://codereview.chromium.org/529103002/. > > A similar CL was landed and reverted: > https://chromium.googlesource.com/chromium/src.git/+/53ffdf90f4646dbde8df72007fbdc97f3f0220de > > BUG=397642, 306348 > TEST=Manually tested on 10.6-10.10. > > Committed: https://crrev.com/f3198fb3fc64878b8feb88cfae28ddb7e8bd71ec > Cr-Commit-Position: refs/heads/master@{#294382} TBR=jeremy@chromium.org NOTREECHECKS=true NOTRY=true BUG=397642, 306348 Review URL: https://codereview.chromium.org/567693002 Cr-Commit-Position: refs/heads/master@{#294421}
-
lfg authored
BUG=352293 Review URL: https://codereview.chromium.org/567643002 Cr-Commit-Position: refs/heads/master@{#294420}
-
peter authored
BUG=405441 Review URL: https://codereview.chromium.org/528333002 Cr-Commit-Position: refs/heads/master@{#294419}
-
qsr authored
R=engedy@chromium.org Review URL: https://codereview.chromium.org/565673004 Cr-Commit-Position: refs/heads/master@{#294418}
-
skyostil authored
This patch introduces a WebGL test that ensures we don't hit an assertion failure in DrawingBuffer when the context is lost in a background tab. Depends on the Blink fix from https://codereview.chromium.org/556303002. BUG=411372 Review URL: https://codereview.chromium.org/560023002 Cr-Commit-Position: refs/heads/master@{#294417}
-