- 07 Apr, 2015 40 commits
-
-
romanl authored
BUG=none R=grt@chromium.org Review URL: https://codereview.chromium.org/1024943002 Cr-Commit-Position: refs/heads/master@{#324144}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/bb4a1cf..6c27535 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=msarett@google.com Review URL: https://codereview.chromium.org/1060423002 Cr-Commit-Position: refs/heads/master@{#324143}
-
estade authored
This is only used for usage statistics (without which we can't apply smart ordering to masked credit card suggestions, or sync usage stats between devices for unmasked cards). There was already code in place for IDs for addresses, which was essentially unused (ID was always empty). This generates an ID to help identify server addresses for the usage stat tracking. The tables are not actually synced yet (that's TODO). BUG=none Review URL: https://codereview.chromium.org/1042353003 Cr-Commit-Position: refs/heads/master@{#324142}
-
jkarlin authored
Review URL: https://codereview.chromium.org/1059183004 Cr-Commit-Position: refs/heads/master@{#324141}
-
rdevlin.cronin authored
Instead of completely regenerating all of the data each time anything extension-y happens, have the extensions ui observe specific events and only regenerate/update the extensions that were modified. Start by limiting events to loaded/unloaded and error added events. Also add a basic browsertest for some of the extensions page functionality. BUG=461039 Review URL: https://codereview.chromium.org/1049483003 Cr-Commit-Position: refs/heads/master@{#324140}
-
reillyg authored
Use the permission_broker's new CheckPathAccess method to filter devices presented to the user by whether or not Chrome will be able to open them later. By having FakePermissionBrokerClient and the base UsbDevice class always return true to access requests a number of #if defined(OS_CHROMEOS) checks can be removed. //third_party/cros_system_api is rolled from 95c486f3 to aea83430 to pull in the new kCheckPathAccess definition in service_constants.h. BUG=441526 Review URL: https://codereview.chromium.org/1034333002 Cr-Commit-Position: refs/heads/master@{#324139}
-
thakis authored
Revert of Add the ability to build Chrome tools to the Win Clang build script. (patchset #2 id:20001 of https://codereview.chromium.org/1068603002/) Reason for revert: Broke all bots on http://build.chromium.org/p/chromium.fyi/console?category=win%20clang , they fail with: ________ running 'C:\b\depot_tools\python276_bin\python.exe src/tools/clang/scripts/update.py --if-needed' in 'C:\b\build\slave\CrWinClang\build' usage: update.py [-h] [--no-clobber] [--tools [TOOLS [TOOLS ...]]] update.py: error: unrecognized arguments: --if-needed Probably easy to fix (just add a dummy --if-needed parameter to argparse), but reverting to get that waterfall back to green. Original issue's description: > Add the ability to build Chrome tools to the Win Clang build script. > > BUG=424436,467287 > > Committed: https://crrev.com/475949d9430b6a759ce759f2133dd3a1577d0d0b > Cr-Commit-Position: refs/heads/master@{#324089} TBR=hans@chromium.org,dcheng@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=424436,467287 Review URL: https://codereview.chromium.org/1063273002 Cr-Commit-Position: refs/heads/master@{#324138}
-
danakj authored
Don't use the canvas() from the PaintContext so that we can have the PaintContext be backed by a DisplayItemList instead in the future. Access to the Canvas should be done through a PaintRecorder. R=sadrul BUG=466426 Review URL: https://codereview.chromium.org/1064133003 Cr-Commit-Position: refs/heads/master@{#324137}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/0cdfa90..f36d5e0 TBR=falken@chromium.org,cbiesinger@chromium.org Review URL: https://codereview.chromium.org/1063223002 Cr-Commit-Position: refs/heads/master@{#324136}
-
mallinath authored
BUG=N/A TBR=pthatcher@chromium.org CC=ronghuawu@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1066233002 Cr-Commit-Position: refs/heads/master@{#324135}
-
bruthig authored
BUG=471354 Review URL: https://codereview.chromium.org/1061283004 Cr-Commit-Position: refs/heads/master@{#324134}
-
brucedawson authored
VS 2015 includes time.h from stdlib.h which leads to redefinition warnings when threads_windows.h defines the timespec struct. Ideally threads_windows.h shouldn't be defining CRT structs at all, but I am doing the minimum scoped change to move VS 2015 development forwards. _MSC_VER == 1900 represents the VC++ 2015 compiler. R=reillyg@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/1067093002 Cr-Commit-Position: refs/heads/master@{#324133}
-
tkchin authored
BUG=338886 Review URL: https://codereview.chromium.org/1064693002 Cr-Commit-Position: refs/heads/master@{#324132}
-
jhorwich authored
This removes some special-case code used to register and load gtbp and o1d PPAPI plugins on Linux and ChromeOS. It also removes infrastructure used to launch these plugins. TEST=Run PDF (out-of-process) and NaCl (in-process) plugins BUG=392002 Review URL: https://codereview.chromium.org/374773002 Cr-Commit-Position: refs/heads/master@{#324131}
-
thestig authored
BUG=472340 Review URL: https://codereview.chromium.org/1062873003 Cr-Commit-Position: refs/heads/master@{#324130}
-
brucedawson authored
VS 2015 RC says, when compiling device_monitor_win.cpp: error C3848: expression having type 'const device::`anonymous-namespace' ::CompareGUID' would lose some const-volatile qualifiers in order to call 'bool device::`anonymous-namespace'::CompareGUID::operator ()(const GUID &,const GUID &)' For details see the STL Breaking Changes (VS14 CTP1) section of: http://blogs.msdn.com/b/vcblog/archive/2014/06/06/ c-14-stl-features-fixes-and-breaking-changes-in- visual-studio-14-ctp1.aspx The complaint, apparently, is that operator() is non-const. Whether this is actually invalid is for the language lawyers to decide. Marking it const is more accurate anyway. R=reillyg@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/1064153002 Cr-Commit-Position: refs/heads/master@{#324129}
-
danakj authored
Don't use the canvas() from the PaintContext so that we can have the PaintContext be backed by a DisplayItemList instead in the future. Access to the Canvas should be done through a PaintRecorder. R=pkasting BUG=466426 Review URL: https://codereview.chromium.org/1066133002 Cr-Commit-Position: refs/heads/master@{#324128}
-
schenney authored
Correct paint invalidation was not occurring for the plugin placeholder content in Chromium when WebPluginContainer paint invalidation is delayed until the paint invalidation phase of the document lifecycle. Here we set the needs layout and needs full paint invalidation flags so that layout is re-done on the plugin content at the next opportunity. Depends on Blink review https://codereview.chromium.org/1056893003 R=tommycli BUG=472348 Review URL: https://codereview.chromium.org/1056643002 Cr-Commit-Position: refs/heads/master@{#324127}
-
glevin authored
BUG=454959 TEST=Attach to cellular network. A systray notification should appear, prompting to download Data Saver. Click to go to CWS Data Saver page. This is a first draft, so folks can try it out. All new functionality is behind the "enable-datasaver-prompt" experimental flag. UMA code and possible UI tweaks still to come. Review URL: https://codereview.chromium.org/1022333002 Cr-Commit-Position: refs/heads/master@{#324126}
-
dcastagna authored
BUG= Review URL: https://codereview.chromium.org/1067033002 Cr-Commit-Position: refs/heads/master@{#324125}
-
mallinath authored
BUG=N/A Review URL: https://codereview.chromium.org/1066153002 Cr-Commit-Position: refs/heads/master@{#324124}
-
dcastagna authored
To test the lifecycle of a memory buffer we used to use glCopyTextureCHROMIUM. This has some limitations due to the extension spec (i.e: limited subset of formats), and doesn't test the general lifecycle of the memory buffer. This patch changes GpuMemoryBufferTest.Lifecycle to test the lifecycle of the GpuMemoryBuffer writing directly to the backbuffer. BUG= Review URL: https://codereview.chromium.org/1066073002 Cr-Commit-Position: refs/heads/master@{#324123}
-
ajuma authored
This makes CalculateVisibleRects try to re-use the to_target and from_target transforms stored in transform nodes whenever it needs to compute a transform. Since these baked transforms incorporate the target's sublayer scale, the fallback path now also includes sublayer scale for consistency. Testing locally on a z620, this improves property tree computation time by 7% on Gmail, and by 20% on rAF-driven poster circle. BUG=474725 Review URL: https://codereview.chromium.org/1060413002 Cr-Commit-Position: refs/heads/master@{#324122}
-
jaekyun authored
When both a URL as Intent.EXTRA_TEXT and a screenshot as Intent.EXTRA_STREAM present, most apps favor the latter. So we need to use a new extra name for a screenshot so that a URL could be prioritized as it is. BUG=455996 Review URL: https://codereview.chromium.org/1060243002 Cr-Commit-Position: refs/heads/master@{#324121}
-
danakj authored
Don't access the canvas() through the PaintContext, to allow the PaintContext to be backed by a DisplayItemList instead of a Canvas in the future. R=piman@chromium.org, sadrul BUG=466426 Review URL: https://codereview.chromium.org/1064103002 Cr-Commit-Position: refs/heads/master@{#324120}
-
rsleevi authored
BUG=473408 TBR=davidben Review URL: https://codereview.chromium.org/1067723002 Cr-Commit-Position: refs/heads/master@{#324119}
-
https://codereview.chromium.org/1041213003/cylee authored
1. Use window.performance.timing instead of statsCollectionController to get page loading time. 2. Fix waiting condition to avoid racing condition BUG=472603,467964 Review URL: https://codereview.chromium.org/1056533003 Cr-Commit-Position: refs/heads/master@{#324118}
-
torne authored
Now that android_webview_build is no longer supported, the extra level of indirection of including cpufeatures.gypi instead of directly depending on the cpufeatures target is not necessary. Remove the cases in the Chromium tree. Other references appear in projects pulled in via DEPS that will have to be fixed separately before cpufeatures.gypi can be entirely deleted. BUG=440793 Review URL: https://codereview.chromium.org/1045123005 Cr-Commit-Position: refs/heads/master@{#324117}
-
avi authored
BUG=471292 TEST=the new test, NavigationControllerBrowserTest.ErrorPageReplacement Review URL: https://codereview.chromium.org/1048963002 Cr-Commit-Position: refs/heads/master@{#324116}
-
danakj authored
Don't use the canvas() from the PaintContext so that we can have the PaintContext be backed by a DisplayItemList instead in the future. Access to the Canvas should be done through a PaintRecorder. R=oshima BUG=466426 Review URL: https://codereview.chromium.org/1066113002 Cr-Commit-Position: refs/heads/master@{#324115}
-
schenney authored
Revert of Disable Slimming Paint rasterize_and_record (patchset #1 id:1 of https://codereview.chromium.org/1053303002/) Reason for revert: Re-enabling by reverting this temporary revert. Original issue's description: > Disable Slimming Paint rasterize_and_record > > We need to revert > https://src.chromium.org/viewvc/blink?view=rev&revision=192695 > > Reverting will cause this benchmark to crash, which is bad. > > TBR=pdr,sullivan > NOTRY=true > BUG=457054 > > Committed: https://crrev.com/798e40fff8abe7d608cd44515ef29ee8158ca97c > Cr-Commit-Position: refs/heads/master@{#323781} TBR=pdr@chromium.org,sullivan@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=457054 Review URL: https://codereview.chromium.org/1066143002 Cr-Commit-Position: refs/heads/master@{#324114}
-
rch authored
of HttpProxyClientSocket and SpdyProxyClientSocket. Instead, contruct a "URL" from the endpoint used in the CONNECT request. Review URL: https://codereview.chromium.org/1060883002 Cr-Commit-Position: refs/heads/master@{#324113}
-
chirantan authored
BUG=b/18275087 Review URL: https://codereview.chromium.org/1064903003 Cr-Commit-Position: refs/heads/master@{#324112}
-
tfarina authored
Refactored these two functions into a single one to ease the transition of https://codereview.chromium.org/920443003. Tested on Android (with Nexus 5 device) with the following command lines: $ ./build/gyp_chromium -DOS=android -Goutput_dir=out_android $ ninja -C out_android/Debug content_unittests content_unittests_apk $ export CHROMIUM_OUT_DIR=out_android $ build/android/test_runner.py gtest -s content_unittests --debug BUG=338338 TEST=see above R=boliu@chromium.org Review URL: https://codereview.chromium.org/1064033002 Cr-Commit-Position: refs/heads/master@{#324111}
-
jmadill authored
https://chromium.googlesource.com/angle/angle/+log/51a1db16..ae2d8a3af BUG=436191 Review URL: https://codereview.chromium.org/1066623003 Cr-Commit-Position: refs/heads/master@{#324110}
-
tfarina authored
When you run `gn gen out-gn/Debug` on Mac you get the following: ERROR at //build/toolchain/mac/BUILD.gn:200:12: Build argument has no effect. os = current_os ^--------- The variable "os" was set as a build argument but never appeared in a declare_args() block in any buildfile. BUG=None TEST=`gn gen out-gn/Debug` passes without the above error R=dpranke@chromium.org Review URL: https://codereview.chromium.org/1064063002 Cr-Commit-Position: refs/heads/master@{#324109}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/44fc33d..0cdfa90 TBR=falken@chromium.org,cbiesinger@chromium.org Review URL: https://codereview.chromium.org/1060373002 Cr-Commit-Position: refs/heads/master@{#324108}
-
wittman authored
Refine interfaces, implementation, formatting and comments according to the C++ style guide and Chrome coding standards. Behavior is unaltered except for a few edge cases and Win32 API error handling. This change is done as part of the readability review process. Original review: https://crrev.com/1016563004. Review URL: https://codereview.chromium.org/1030923002 Cr-Commit-Position: refs/heads/master@{#324107}
-
mdempsky authored
BUG=472038 Review URL: https://codereview.chromium.org/1068623002 Cr-Commit-Position: refs/heads/master@{#324106}
-
rkaplow authored
BUG=none Review URL: https://codereview.chromium.org/1063153002 Cr-Commit-Position: refs/heads/master@{#324105}
-