- 01 Nov, 2014 10 commits
-
-
andresantoso authored
These calls are not available on MacViews without Aura, so put them behind an interface through views::Widget. BUG=425229 Review URL: https://codereview.chromium.org/693523003 Cr-Commit-Position: refs/heads/master@{#302368}
-
dalecurtis authored
The mojo_surface_converters get their own file to avoid dependency cycles between media/ and cc/ BUG=none TEST=no more cycles when media depends on type conveters. Review URL: https://codereview.chromium.org/691573003 Cr-Commit-Position: refs/heads/master@{#302367}
-
wez authored
Previously the client cursor would revert to a default arrow if the host cursor was hidden or empty, or in mouse-lock mode. BUG=429368 Review URL: https://codereview.chromium.org/696873002 Cr-Commit-Position: refs/heads/master@{#302366}
-
ianwen authored
Per mock: https://beta-dot-folio.googleplex.com/chrome-ux/mocks/212-stars-iphone/20/phone#%2F05-detail-edit-bookmark.png%3Fc=hidden All tags/filters associated with a bookmark should be displayed in enhanced bookmark detail page. This CL introduced related APIs to jni bridge for UI to retrieve. BUG=NONE Review URL: https://codereview.chromium.org/694093002 Cr-Commit-Position: refs/heads/master@{#302365}
-
morrita authored
Webkit roll 9eddd919681ed3642ac37d811e6b3f30e0f152db(r184753):2842c5f8ea181eb3415ae3b124b873eb4355e6e2(r184758) TBR=morrita BUG= Review URL: https://codereview.chromium.org/695043003 Cr-Commit-Position: refs/heads/master@{#302364}
-
ccameron authored
The root cause was that ImageTransportSurfaceFBO was using the pixel size of the surface to early-out of surface reallocation. This is a problem when scale factor changed and pixel size doesn't -- the change in scale factor is never propagated to the underlying CALayer. Move all logic for changing the size of the surface and for skipping changes in the size of the surface to AllocateOrResizeFramebuffer. Rename ambiguous sizes to be labeled as pixel_size or dip_size. Remove a stray ScopedCAActionDisabler that does nothing (found by inspection of nearby code). Add myself as an OWNER for this path. BUG=424713 Review URL: https://codereview.chromium.org/696823002 Cr-Commit-Position: refs/heads/master@{#302363}
-
ckehoe authored
Moving the DirectiveHandler to be owned by CopresenceManager. This also adds the ability to queue Directives. Tests will be forthcoming. BUG=424253 Review URL: https://codereview.chromium.org/684273004 Cr-Commit-Position: refs/heads/master@{#302362}
-
cmasone authored
GCC thinks that the create_flags parameter in the templated class gin::Invoker constructor is going unused, even though it is definitely being used as a part of a variadic template expansion. Convince GCC that it is in fact being used by casting it to a void. BUG=424334 TEST=Linux GN build of gin with is_clang=false R=aa Review URL: https://codereview.chromium.org/694063002 Cr-Commit-Position: refs/heads/master@{#302361}
-
thestig authored
BUG=159847 Review URL: https://codereview.chromium.org/690213003 Cr-Commit-Position: refs/heads/master@{#302360}
-
jiayl authored
BUG=webrtc:3868 Review URL: https://codereview.chromium.org/689243002 Cr-Commit-Position: refs/heads/master@{#302359}
-
- 31 Oct, 2014 30 commits
-
-
thakis authored
BUG=429372 NOTRY=true Review URL: https://codereview.chromium.org/697783002 Cr-Commit-Position: refs/heads/master@{#302358}
-
kalman authored
options_ui is available. For now this will be hosted on a new page options2.html since the new options aren't stable yet. When they are, I'll switch over the URLs. R=mkearney@chromium.org BUG=406890 Review URL: https://codereview.chromium.org/691283003 Cr-Commit-Position: refs/heads/master@{#302357}
-
thakis authored
We can't fix all instances of this warning at the moment (because of gmock and because of blink apis, see bug). We've fixed many, but our bots still show almost 20k warnings due to this warning, most of them in v8. That's already fixed upstream, but v8 rolls don't happen often. Turn the warning off for now. BUG=428099 NOTRY=true Review URL: https://codereview.chromium.org/687343003 Cr-Commit-Position: refs/heads/master@{#302356}
-
reveman authored
This adds a page set that is useful to measure how good a browser is at producing new content when scrolling a page fast. MAX_SCROLL_LENGTH_PIXELS is changed into MAX_SCROLL_LENGTH_TIME_MS to allow fast scrolling of large pages. BUG=406404 Review URL: https://codereview.chromium.org/688423002 Cr-Commit-Position: refs/heads/master@{#302355}
-
maruel authored
$ git log bcb3bc303..41036ec83 --date=short --format='%ad %ae %s' | sed 's/@chromium\.org//' 2014-10-31 jbauman Fix termination of initially-suspended processes at end of tests. 2014-10-24 maruel Quick fix to support query parameters in GETs. 2014-10-24 maruel Make test resilient to any umask and add workarounds for strace 2.8. R=jbauman@chromium.org BUG= Review URL: https://codereview.chromium.org/690333004 Cr-Commit-Position: refs/heads/master@{#302354}
-
estade authored
TBR=isherman@chromium.org BUG=429343 Review URL: https://codereview.chromium.org/692263002 Cr-Commit-Position: refs/heads/master@{#302353}
-
kalman authored
storage.sync MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE limit. I'll be relaxing the quota over a few CLs and having 2 limiting mechanisms just complicates things. BUG=406406 R=zea@chromium.org Review URL: https://codereview.chromium.org/685603003 Cr-Commit-Position: refs/heads/master@{#302352}
-
ttuttle authored
BUG= Review URL: https://codereview.chromium.org/694573003 Cr-Commit-Position: refs/heads/master@{#302351}
-
pavely authored
The issue is after enabling sending device_id for LST, IssueToken endpoint started returning "issueAdvice": "consent" for scope marked with per_device_authorization_required:true. The solution is to pass the same device_id/device_type to approval url. Tests: Tested that for LST with device_id consent screen is only shown once. After restart access token is issued without user interaction. Tested that for LST without device_id no consent screen is shown. BUG=403718 R=courage@chromium.org Review URL: https://codereview.chromium.org/693203003 Cr-Commit-Position: refs/heads/master@{#302350}
-
ianwen authored
Local search function has the same logic with how omnibox retrieves bookmarks for a given keyword. BUG=415774 Review URL: https://codereview.chromium.org/695493005 Cr-Commit-Position: refs/heads/master@{#302349}
-
jrummell authored
Since these events are no longer used by the unprefixed EME code, there is no need to pass them to blink. Full removal will happen when the prefixed EME code is removed. BUG=418260 TEST=existing EME tests pass Review URL: https://codereview.chromium.org/685373003 Cr-Commit-Position: refs/heads/master@{#302348}
-
thestig authored
Review URL: https://codereview.chromium.org/687903003 Cr-Commit-Position: refs/heads/master@{#302347}
-
sky authored
The santizer target is empty if no sanitizers are defined, otherwise it contains the necessary targets. Because of this we can always depend on it. Without this dep asan builds fail. BUG=none TEST=none R=brettw@chromium.org TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/694053002 Cr-Commit-Position: refs/heads/master@{#302346}
-
morrita authored
Webkit roll b7fb61d76a24485ae49be3c9a2597fed6126181e(r184749):9eddd919681ed3642ac37d811e6b3f30e0f152db(r184753) TBR=morrita BUG= Review URL: https://codereview.chromium.org/695023002 Cr-Commit-Position: refs/heads/master@{#302345}
-
sandersd authored
For consistency with other VDAs, and to make sure that Chromium's GL state is in sync with reality. BUG=642453003 Review URL: https://codereview.chromium.org/645713002 Cr-Commit-Position: refs/heads/master@{#302344}
-
brucedawson authored
/analyze pointed out that the bit testing in gles2_cmd_decoder.cc was always returning true due to the wrong operator being used. Warnings were: src\gpu\command_buffer\service\gles2_cmd_decoder.cc (3128) : warning C6316: Incorrect operator: tested expression is constant and non-zero. Use bitwise-and to determine whether bits are set. (5103) : warning C6316: Incorrect operator: tested expression is constant and non-zero. Use bitwise-and to determine whether bits are set. BUG=427616 Review URL: https://codereview.chromium.org/690943004 Cr-Commit-Position: refs/heads/master@{#302343}
-
dpranke authored
Previously it didn't, and perhaps there was no need for it to, but it seems like NaCl has a need. Specifically, NaCl has two targets A and B with both run fine on their own, but A can delete the output of B, and so needs to run before B. R=brettw@chromium.org BUG=428576 Review URL: https://codereview.chromium.org/693443002 Cr-Commit-Position: refs/heads/master@{#302342}
-
thakis authored
BUG=428816 NOTRY=true Review URL: https://codereview.chromium.org/696843002 Cr-Commit-Position: refs/heads/master@{#302341}
-
brucedawson authored
The incorrectly placed parentheses means that failure of the first function didn't stop the others from executing, and overall failure was evaluated incorrectly -- always succeeding I think. Warnings were: d:\src\chromium2\src\media\audio\win\core_audio_util_win.cc(361) : C6215: Cast between semantically different integer types: Boolean type to HRESULT. C6230: Implicit cast between semantically different integer types: using HRESULT in a Boolean context. BUG=427616 Review URL: https://codereview.chromium.org/688663004 Cr-Commit-Position: refs/heads/master@{#302340}
-
jbauman authored
Otherwise it will leave dangling pointers in the SurfaceManager. Also add a DestroyAll method to allow owners to ensure every surface in the factory is destroyed. BUG=428127 Review URL: https://codereview.chromium.org/693623004 Cr-Commit-Position: refs/heads/master@{#302339}
-
zork authored
BUG=424650 Review URL: https://codereview.chromium.org/686983002 Cr-Commit-Position: refs/heads/master@{#302338}
-
guohui authored
BUG= Review URL: https://codereview.chromium.org/669783003 Cr-Commit-Position: refs/heads/master@{#302337}
-
jkarlin authored
With this CL, the ServiceWorkerCacheListener holds a reference to the caches that it calls async functions on to ensure that the callbacks are called. Note: Keeping the cache alive longer does not alter cache deletion behavior as cache deletion destroys the cache's backend but not the ServiceWorkerCache object itself. BUG=429161 Review URL: https://codereview.chromium.org/682383005 Cr-Commit-Position: refs/heads/master@{#302336}
-
sky authored
BUG=none TEST=none R=skuhne@chromium.org Review URL: https://codereview.chromium.org/689143002 Cr-Commit-Position: refs/heads/master@{#302335}
-
lliabraa authored
CL https://codereview.chromium.org/633373010 added some output files but did not update the expected output files in the corresponding GN files. BUG=429299 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/694853003 Cr-Commit-Position: refs/heads/master@{#302334}
-
jamesr authored
Also includes changes from https://codereview.chromium.org/695953002/ to update html_viewer for API changes. Review URL: https://codereview.chromium.org/694923002 Cr-Commit-Position: refs/heads/master@{#302333}
-
wjmaclean authored
Revert of WebView Guest should use ZOOM_MODE_ISOLATED. (patchset #2 id:100001 of https://codereview.chromium.org/645153002/) Reason for revert: This CL seems to be at the root of several other issues, including https://code.google.com/p/chromium/issues/detail?id=429004. In particular, it seems to be allowing re-entrancy into ZoomController that was unexpected due to the timing with which OnGuestReady() is called. Original issue's description: > WebView Guest should use ZOOM_MODE_ISOLATED. > > In order that changes to zoom levels in a WebView Guest don't affect > the embedder, set the WebView Guest's WebContents to use > ZOOM_MODE_ISOLATED. > > BUG=418605 > > Committed: https://crrev.com/f71a5dc79473cc74990d1e288c66ac282c2926a1 > Cr-Commit-Position: refs/heads/master@{#299493} TBR=fsamuel@chromium.org NOTREECHECKS=true NOTRY=true BUG=418605 Review URL: https://codereview.chromium.org/690373002 Cr-Commit-Position: refs/heads/master@{#302332}
-
asvitkine authored
BUG=428055 Review URL: https://codereview.chromium.org/688973004 Cr-Commit-Position: refs/heads/master@{#302331}
-
mpcomplete authored
Revert of Roll src/third_party/skia d8aa7b7:3bdd7dc (patchset #1 id:1 of https://codereview.chromium.org/683733007/) Reason for revert: XP tests are crashing again. See https://code.google.com/p/chromium/issues/detail?id=429207 Original issue's description: > Roll src/third_party/skia d8aa7b7:3bdd7dc > > Summary of changes available at: > https://chromium.googlesource.com/skia/+log/d8aa7b7..3bdd7dc > > CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg > TBR=hcm@google.com > > Committed: https://crrev.com/a0a1b16124cb5c4340cf56e6df92fef846fb0337 > Cr-Commit-Position: refs/heads/master@{#302311} TBR=hcm@google.com,skia-deps-roller@chromium.org NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/696833002 Cr-Commit-Position: refs/heads/master@{#302330}
-
dbeam authored
## /mnt/data/b/build/slave/Closure_Compilation_Linux/build/src/chrome/browser/resources/sync_setup_overlay.js:445: ERROR - Property wifiCredentialsSynced never defined on args ## $('wifi-credentials-checkbox').checked = args.wifiCredentialsSynced; ## ^ ## ## /mnt/data/b/build/slave/Closure_Compilation_Linux/build/src/chrome/browser/resources/sync_setup_overlay.js:447: ERROR - Property wifiCredentialsSynced never defined on args ## args.wifiCredentialsSynced; ## ^ ## ## /mnt/data/b/build/slave/Closure_Compilation_Linux/build/src/chrome/browser/resources/sync_setup_overlay.js:449: ERROR - Property wifiCredentialsEnforced never defined on args ## args.wifiCredentialsEnforced; ## ^ BUG=none TEST=green closure bot TBR=quiche@chromium.org NOTRY=true NOTREECHECKS=true Review URL: https://codereview.chromium.org/696013002 Cr-Commit-Position: refs/heads/master@{#302329}
-