- 03 Mar, 2015 5 commits
-
-
rdevlin.cronin authored
BUG=463184 Review URL: https://codereview.chromium.org/969063002 Cr-Commit-Position: refs/heads/master@{#318811}
-
cpu authored
Revert of Refactoring: de-couple Extensions from "script injection System" [render side]:2 (patchset #8 id:350001 of https://codereview.chromium.org/906493004/) Reason for revert: broke the extension tests: http://build.chromium.org/p/chromium.linux/builders/Linux%20Tests%20%28dbg%29%281%29%2832%29/builds/10543 Original issue's description: > This CL adds routing info for content scripts from <webview>. > > To support dynamically added/removed content scripts in <webview>, we store > these content scripts in the same shared memory where user scripts from > declarative content API are stored, but the decision for injection will > be made in the render once the url pattern is matched. Since render doesn't > need to send IPCs to ask a decision from browser, it makes a precise time > injection possible. > > Special to <webview>, once the content scripts are updated (added/removed), > browser will only notify the render process of the given <webview>, rather than > all of the renders (which is the case for user scripts). > > BUG=437566 > > Committed: https://crrev.com/f853287c95cf818d0b5b02d7f4a6588761096d1c > Cr-Commit-Position: refs/heads/master@{#318774} TBR=rdevlin.cronin@chromium.org,fsamuel@chromium.org,hanxi@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=437566 Review URL: https://codereview.chromium.org/972863002 Cr-Commit-Position: refs/heads/master@{#318810}
-
gunsch authored
See: https://codereview.chromium.org/935243002 R=erickung@chromium.org,lcwu@chromium.org BUG=None Review URL: https://codereview.chromium.org/976473002 Cr-Commit-Position: refs/heads/master@{#318809}
-
mtomasz authored
The recent patch crrev.com/895933007 introduced a regression by using size_t for offsets, which on 32bit builds is sizeof(size_t) = 4 which was causing broken offset values due to assigning a uint64_t variable to such variables. This CL fixes that by simply converting the types to uint64_t. TEST=*FileSystemProvider*BigFile* on a 32 bit build Chromium build with chromeos=1. BUG=375297, 458122 Review URL: https://codereview.chromium.org/959113002 Cr-Commit-Position: refs/heads/master@{#318808}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/b421650..7ab4277 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=joshualitt@google.com Review URL: https://codereview.chromium.org/973603003 Cr-Commit-Position: refs/heads/master@{#318807}
-
- 02 Mar, 2015 35 commits
-
-
rkaplow authored
BUG=454789 Review URL: https://codereview.chromium.org/957353003 Cr-Commit-Position: refs/heads/master@{#318806}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/b517bea..3a0ba1e TBR=alancutter@chromium.org,enne@chromium.org Review URL: https://codereview.chromium.org/973613002 Cr-Commit-Position: refs/heads/master@{#318805}
-
brettw authored
This adds the recipient name to the server profile database. This was added to the schema since the original check-in. Review URL: https://codereview.chromium.org/949563003 Cr-Commit-Position: refs/heads/master@{#318804}
-
limasdf authored
Remove deprecated extension notification from ExtensionHost. Use ExtensionRegistryObserver instead. BUG=411568 Review URL: https://codereview.chromium.org/964193002 Cr-Commit-Position: refs/heads/master@{#318803}
-
danakj authored
This forces the compositor to use textures and allows us to verify the texture upload path is working, instead of just testing solid color layers work. R=sadrul Review URL: https://codereview.chromium.org/963303003 Cr-Commit-Position: refs/heads/master@{#318802}
-
rsadam authored
Ozone includes the internal keyboard in the actice keyboard devices even if the TV mode disables it due to the fact that the volume keys can still be pressed. We now explicitly check the state of maximized mode when deciding to show the keyboard. TEST=VirtualKeyboardControllerAutoTest.EnabledDuringMaximizeMode, VirtualKeyboardControllerAutoTest.SuppressedInMaximizedMode BUG=462666 Review URL: https://codereview.chromium.org/970983003 Cr-Commit-Position: refs/heads/master@{#318801}
-
spang authored
This doesn't do anything on linux. On windows it means the task may perform a "long wait", which also doesn't apply here. Opening a device is fast. BUG=none TEST=boot link_freon & type on the keyboard. input still works :) Review URL: https://codereview.chromium.org/972803002 Cr-Commit-Position: refs/heads/master@{#318800}
-
prasadv authored
BUG=463265 NOTRY=true Review URL: https://codereview.chromium.org/973653002 Cr-Commit-Position: refs/heads/master@{#318799}
-
creis authored
(Attempt #2, after a speculative revert from a flaky test.) BUG=461494 TEST=Crash report should show that --site-per-process flag is present. Review URL: https://codereview.chromium.org/972773003 Cr-Commit-Position: refs/heads/master@{#318798}
-
hans authored
Also introduce a build number in the package name, stop versioning the Blink GC plugin, and remove repackage.sh. BUG=444089 TBR=jln, jbauman NOPRESUBMIT=true Review URL: https://codereview.chromium.org/975503002 Cr-Commit-Position: refs/heads/master@{#318797}
-
groby authored
BUG=463261 TBR=enne@chromium.org, thestig@chromium.org Review URL: https://codereview.chromium.org/971953002 Cr-Commit-Position: refs/heads/master@{#318796}
-
brettw authored
This flag was used to disable linking when the bots were too behind. It's not needed any more. Review URL: https://codereview.chromium.org/974543002 Cr-Commit-Position: refs/heads/master@{#318795}
-
jamiewalch authored
These methods were introduced before Promises were implemented to simplify code that just needs an email address but wouldn't otherwise need to be written asynchronously. With Promises, asynchronous code reads a lot more naturally, and it's less of a concern. Having explicit accessors for cached state means that there needs to be some (asynchronous) initialization code to save them, which complicates some of the changes I'm planning on making to application start-up. The simplest fix is eliminate them altogether and make all the call-sites asynchronous. Review URL: https://codereview.chromium.org/963103004 Cr-Commit-Position: refs/heads/master@{#318794}
-
jackhou authored
BUG=459877 Review URL: https://codereview.chromium.org/935193003 Cr-Commit-Position: refs/heads/master@{#318793}
-
nasko authored
This CL makes the RenderFrameHostChanged observer method behave consistently and as described in the WebContentsObserver header file. BUG=450799 Review URL: https://codereview.chromium.org/950223006 Cr-Commit-Position: refs/heads/master@{#318792}
-
jfb authored
R= bradnelson@chromium.org BUG= none Review URL: https://codereview.chromium.org/971043002 Cr-Commit-Position: refs/heads/master@{#318791}
-
rohitrao authored
When the status bubble is in state kBubbleHidden, its width is now always 1pt. This prevents us from wasting time resizing and redrawing a hidden bubble. BUG=454502 TEST=No visible impact. Status bubble should continue to show when hovering over links and resize properly when the window size is changed. Review URL: https://codereview.chromium.org/895713002 Cr-Commit-Position: refs/heads/master@{#318790}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/281bf52..b421650 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=joshualitt@google.com Review URL: https://codereview.chromium.org/967403003 Cr-Commit-Position: refs/heads/master@{#318789}
-
chrome://downloadsdbeam authored
R=asanka@chromium.org BUG=442666 Review URL: https://codereview.chromium.org/966983002 Cr-Commit-Position: refs/heads/master@{#318788}
-
jrummell authored
Add callback so that kNoKey can get passed to blink in order to generate the HTMLMediaElement.waitingforkey event. BUG=337975 TEST=updated tests pass Review URL: https://codereview.chromium.org/935243002 Cr-Commit-Position: refs/heads/master@{#318787}
-
achaulk authored
Reverting CreateViewGLSurface to creating a surface that works as expected Chrome uses the new surfaceless API, all others use the old one BUG=447798 Review URL: https://codereview.chromium.org/938873002 Cr-Commit-Position: refs/heads/master@{#318786}
-
lionel.g.landwerlin authored
BUG=417589 TEST=run ppapi/examples/video_encode/video_encode.html Review URL: https://codereview.chromium.org/937643006 Cr-Commit-Position: refs/heads/master@{#318785}
-
holte authored
BUG=412007 Review URL: https://codereview.chromium.org/650233006 Cr-Commit-Position: refs/heads/master@{#318784}
-
thestig authored
Revert of Autofill: Disable autofill for fields outside of forms. (patchset #2 id:10006 of https://codereview.chromium.org/964453004/) Reason for revert: CL merged to M41/M42. Re-enabling on trunk. Original issue's description: > Autofill: Disable autofill for fields outside of forms. > > BUG=462375 > > Committed: https://crrev.com/eb9e20d80c31c2842509e5213d4864eadf84baa1 > Cr-Commit-Position: refs/heads/master@{#318406} TBR=estade@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=462375 Review URL: https://codereview.chromium.org/974613002 Cr-Commit-Position: refs/heads/master@{#318783}
-
yfriedman authored
BUG=428903 Review URL: https://codereview.chromium.org/968943004 Cr-Commit-Position: refs/heads/master@{#318782}
-
kkimlabs authored
BUG=462838 Review URL: https://codereview.chromium.org/969123002 Cr-Commit-Position: refs/heads/master@{#318781}
-
rkaplow authored
Restructure it so it is organized by date-added, and delete all migrations that are sufficiently old. BUG=69995,165672 Review URL: https://codereview.chromium.org/944433002 Cr-Commit-Position: refs/heads/master@{#318780}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/f48b013..b517bea TBR=alancutter@chromium.org,enne@chromium.org Review URL: https://codereview.chromium.org/969053005 Cr-Commit-Position: refs/heads/master@{#318779}
-
kkimlabs authored
AppMenu animation is known to be very janky on some low-end devices. It will be helpful to indentify what devices are having this issue through UMA. TBR=isherman@chromium.org BUG=461066 Review URL: https://codereview.chromium.org/960913003 Cr-Commit-Position: refs/heads/master@{#318778}
-
aurimas authored
BUG=458328 Review URL: https://codereview.chromium.org/973553003 Cr-Commit-Position: refs/heads/master@{#318777}
-
wesleylancel authored
BUG=460475 Review URL: https://codereview.chromium.org/945293002 Cr-Commit-Position: refs/heads/master@{#318776}
-
bauerb authored
Previous review URL: https://codereview.chromium.org/953453002 BUG=460859 TBR=rsesek@chromium.org Review URL: https://codereview.chromium.org/962143002 Cr-Commit-Position: refs/heads/master@{#318775}
-
hanxi authored
To support dynamically added/removed content scripts in <webview>, we store these content scripts in the same shared memory where user scripts from declarative content API are stored, but the decision for injection will be made in the render once the url pattern is matched. Since render doesn't need to send IPCs to ask a decision from browser, it makes a precise time injection possible. Special to <webview>, once the content scripts are updated (added/removed), browser will only notify the render process of the given <webview>, rather than all of the renders (which is the case for user scripts). BUG=437566 Review URL: https://codereview.chromium.org/906493004 Cr-Commit-Position: refs/heads/master@{#318774}
-
mmenke authored
in GetLoadInfoForAllRoutes. BUG=455952 Review URL: https://codereview.chromium.org/972773002 Cr-Commit-Position: refs/heads/master@{#318773}
-
cpu authored
Revert of Add remoting and PPAPI tests to GN build (patchset #6 id:100001 of https://codereview.chromium.org/961323004/) Reason for revert: broke windows GN builds as seen in http://build.chromium.org/p/chromium.win/builders/Win8%20GN/builds/5206/steps/compile/logs/stdio Original issue's description: > Add remoting and PPAPI tests to GN build > > Reland of https://codereview.chromium.org/965633002/ > > TBR=dpranke > > Committed: https://crrev.com/66c53eef76f7dff97b1bc76d51740c3a9c07844f > Cr-Commit-Position: refs/heads/master@{#318756} TBR=dpranke@chromium.org,brettw@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/968243004 Cr-Commit-Position: refs/heads/master@{#318772}
-