- 20 May, 2015 1 commit
-
-
erikchen authored
BUG=488146 Review URL: https://codereview.chromium.org/1130773004 Cr-Commit-Position: refs/heads/master@{#330651}
-
- 19 May, 2015 39 commits
-
-
brettw authored
Revert of Fix missing GN dependencies. (patchset #4 id:60001 of https://codereview.chromium.org/1128163007/) Reason for revert: Broke Windows: http://build.chromium.org/p/chromium.win/builders/Win%20x64%20GN/builds/1568/steps/compile/logs/stdio Original issue's description: > Fix missing GN dependencies. > > Fixes some cases where a dependency between a target's inputs and outputs exists without an explicit dependency. > > json_schema_api.gni was generating wrong names, this was fixed. > > mojo_application_package.gni was fixed to generate unique names (just a bug I noticed in passing) and support the testonly flag, which is necessary when I added the correct dependency. > > The rest of the cases are just adding deps or making existing deps public so that the ability to depend on the target's outputs is passed to dependents. > > BUG=487897 > > Committed: https://crrev.com/eadea21096be21b0d74c93f5b1a0ae6a9cc057d7 > Cr-Commit-Position: refs/heads/master@{#330636} TBR=dpranke@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=487897 Review URL: https://codereview.chromium.org/1137693006 Cr-Commit-Position: refs/heads/master@{#330650}
-
yusufo authored
Add a layout and constants for supporting a menu item with three icons in it. BUG=478984 Review URL: https://codereview.chromium.org/1138993011 Cr-Commit-Position: refs/heads/master@{#330649}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/b1dbd0d..90421e2 TBR=hiroshige@chromium.org,szager@chromium.org,leviw@chromium.org Review URL: https://codereview.chromium.org/1138823007 Cr-Commit-Position: refs/heads/master@{#330648}
-
ortuno authored
This patch removes the testing IPC from BluetoothDispatcher and BluetoothDispatcherHost. This patch also changes the way the mock BluetoothAdapter was set in BluetoothDispatcherHost. Instead of receiving an IPC to set the adapter, BluetoothDispatcherHost exposes a function to directly set the adapter. This function is used by LayoutTestSupport to set the adapter. Mock adapter flow before: BlinkTestRunner -> LayoutTestSupport -> BluetoothDispatcher --IPC--> BluetoothDispatcherHost (Mock constructed here) After: BlinkTestRunner --IPC--> LayoutTestMessages(Mock constructed here) -> LayoutTestSupport -> BluetoothDispatcherHost This is the first of two patches to remove testing from BluetoothDispatcher and BluetoothDispatcherHost: [1] This patch. [2] http://crrev.com/1132943002 BUG=436284 Review URL: https://codereview.chromium.org/1125133005 Cr-Commit-Position: refs/heads/master@{#330647}
-
xhwang authored
- Update comment about "cenc" and "webm" support. - Support keyids. BUG=488759 Review URL: https://codereview.chromium.org/1128143005 Cr-Commit-Position: refs/heads/master@{#330646}
-
Penny MacNeil authored
Cr-Commit-Position: refs/heads/master@{#330645}
-
bustamante authored
The exp_directive test verifies the experiment flag is passed to the page, by bypassing any request to http://aws1.mdw.la/exptest/... when the flag --data-reduction-proxy-experiment=test is set. Which works as expected. However the favicon request from http://aws1.mdw.la/favicon.ico won't be bypassed, causing the test to fail. To fix the test, I'm adding an optional url_pattern parameter to the bypass verification, that will verify only /exptest/ urls are checked. BUG=488232 Review URL: https://codereview.chromium.org/1141923004 Cr-Commit-Position: refs/heads/master@{#330644}
-
chinmaygarde authored
Review URL: https://codereview.chromium.org/1130153009 Cr-Commit-Position: refs/heads/master@{#330643}
-
sandersd authored
This restores the ability for the prefixed EME API to use secure codecs when the renderer preference is set. BUG=489512 Review URL: https://codereview.chromium.org/1132323004 Cr-Commit-Position: refs/heads/master@{#330642}
-
pbos authored
WebRTC 9217:9227 Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/5deb53c..6859ada Libjingle 9216:9227 Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/44d6a85..88eeffa R=mcasas@chromium.org BUG= Review URL: https://codereview.chromium.org/1137273003 Cr-Commit-Position: refs/heads/master@{#330641}
-
jdduke authored
Composited selection coordinates are in floating pointer DIPs. However, current APIs for manipulating the selection are all in integral coordinates. This leads to cases where an adjusted selection can chaotically hop across selection region boundaries. Until all platforms adopt unified selection and we transition the APIs to use floating point coordinates, use rounded coordinates when manipulating the selection from the browser. BUG=489852 Review URL: https://codereview.chromium.org/1139043004 Cr-Commit-Position: refs/heads/master@{#330640}
-
enne authored
Depends on https://codereview.chromium.org/1134753005 to turn off verify_property_trees everywhere so that this doesn't break the world. This verification is turned off by default, and can be enabled locally everywhere by reverting the above patch. R=ajuma@chromium.org,vollick@chromium.org BUG=481585 Review URL: https://codereview.chromium.org/1135393007 Cr-Commit-Position: refs/heads/master@{#330639}
-
trchen authored
The crash was probably due to accessing a dangling pointer to the plugin container during a small time frame between PepperWebPluginImpl::destroy() and the destructor being called. (Speculated from source since no reliable repro is found.) This CL clears eveything in the destroy() function as if the destructor has been called, only delaying memory release. In additional to the original CL https://codereview.chromium.org/1137663006/ This CL also switched the destruction order of pepper instance and the throttler. Engaging throttle during destruction cause crash and doesn't make sense anyway. R=tommycli,raymes BUG=483068,487607 Review URL: https://codereview.chromium.org/1141793002 Cr-Commit-Position: refs/heads/master@{#330638}
-
vmpstr authored
This is a pretty small optimization, but it saves a few struct copies, which seems to make a small difference (~1% improvement) in a targeted perftest that runs this function. R=enne BUG=488636 Review URL: https://codereview.chromium.org/1130343005 Cr-Commit-Position: refs/heads/master@{#330637}
-
brettw authored
Fixes some cases where a dependency between a target's inputs and outputs exists without an explicit dependency. json_schema_api.gni was generating wrong names, this was fixed. mojo_application_package.gni was fixed to generate unique names (just a bug I noticed in passing) and support the testonly flag, which is necessary when I added the correct dependency. The rest of the cases are just adding deps or making existing deps public so that the ability to depend on the target's outputs is passed to dependents. BUG=487897 Review URL: https://codereview.chromium.org/1128163007 Cr-Commit-Position: refs/heads/master@{#330636}
-
kundaji authored
This behavior is behind the "DataReductionProxyUseDataSaverOnVPN" Finch trial, so Data Saver will not be disabled only for users who are part of this trial. BUG=462497 Review URL: https://codereview.chromium.org/1123173004 Cr-Commit-Position: refs/heads/master@{#330635}
-
jam authored
The problem is that |response| was passed in the Bind call before the body was taken out. I saw this because of null dereference on Windows. The order of evaluation is undefined, which is why it worked on Linux. Review URL: https://codereview.chromium.org/1138443004 Cr-Commit-Position: refs/heads/master@{#330634}
-
rdevlin.cronin authored
Move the remaining notifications from ExtensionSettingsHandler to the DeveloperPrivate API. Also adjust the WarningService observer method to include a set of modified extensions. BUG=461039 Review URL: https://codereview.chromium.org/1146693004 Cr-Commit-Position: refs/heads/master@{#330633}
-
brettw authored
This command will find an annotate dependencies between two targets in the tree. I wanted this when tracking down some dependency issues so wrote a tool for it. Review URL: https://codereview.chromium.org/1130423006 Cr-Commit-Position: refs/heads/master@{#330632}
-
cmumford authored
This is the experimental IDBIndex.getAll implementation for retrieving multiple values in a single request as proposed in https://www.w3.org/2008/webapps/wiki/IndexedDatabaseFeatures Mozilla's documentation for IDBIndex.getAll is at: https://developer.mozilla.org/en-US/docs/Web/API/IDBIndex/getAll In order to use run Chrome with: --enable-experimental-web-platform-features BUG=457450 Review URL: https://codereview.chromium.org/1147433002 Cr-Commit-Position: refs/heads/master@{#330631}
-
xdai authored
This test has been failing on cros trunk builder for several days. BUG=480491 Review URL: https://codereview.chromium.org/1128153007 Cr-Commit-Position: refs/heads/master@{#330630}
-
nednguyen authored
This is so that we can use the telemetry/examples folder for putting an examples end to end benchmark. BUG=482227 Review URL: https://codereview.chromium.org/1111103002 Cr-Commit-Position: refs/heads/master@{#330629}
-
jrw authored
Instances of this class are created in an upcoming patch. BUG=471928 Review URL: https://codereview.chromium.org/1123153002 Cr-Commit-Position: refs/heads/master@{#330628}
-
dzhioev authored
BUG=487849 TEST=manually Review URL: https://codereview.chromium.org/1142253002 Cr-Commit-Position: refs/heads/master@{#330627}
-
ortuno authored
Component build requires EXPORT macro when code from content utilizes this class, as used in upcoming https://codereview.chromium.org/1125133005 BUG=489330 Review URL: https://codereview.chromium.org/1140813004 Cr-Commit-Position: refs/heads/master@{#330626}
-
aelias authored
Revert of Remember previous keyboard type and use that when switching to "none" type. (patchset #2 id:20001 of https://codereview.chromium.org/1138103003/) Reason for revert: Patch landed despite rejection from code reviewers. Original issue's description: > Remember previous keyboard type and use that when switching to "none" type. > > BUG=484139 > > Committed: https://crrev.com/e8e5d60be5f3b36634a1b012ec21874a4abe0ef0 > Cr-Commit-Position: refs/heads/master@{#330551} TBR=aurimas@chromium.org,bcwhite@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=484139 Review URL: https://codereview.chromium.org/1148503003 Cr-Commit-Position: refs/heads/master@{#330625}
-
jbudorick authored
BUG=487456 Review URL: https://codereview.chromium.org/1129003003 Cr-Commit-Position: refs/heads/master@{#330624}
-
nednguyen authored
BUG=455391, 470147 Review URL: https://codereview.chromium.org/1135173007 Cr-Commit-Position: refs/heads/master@{#330623}
-
rdevlin.cronin authored
Add a new method to allow a DialogDelegate to provide a custom amount to use as the minimum padding between the extra view and the button strip in the dialog. Use this to adjust the padding in the extension uninstall dialog. BUG=441377 Review URL: https://codereview.chromium.org/1141253002 Cr-Commit-Position: refs/heads/master@{#330622}
-
enne authored
This was a missing part of putting property trees on the compositor thread. Because these temporary property trees are being used instead of the ones on LayerTreeImpl, it makes future calls that touch property trees through LayerImpls have bogus indices because the trees on the LayerTreeImpl are not the same as the temporary property trees. R=ajuma@chromium.org,vollick@chromium.org BUG=481585 Review URL: https://codereview.chromium.org/1146523005 Cr-Commit-Position: refs/heads/master@{#330621}
-
jam authored
These weren't being used. Review URL: https://codereview.chromium.org/1143793003 Cr-Commit-Position: refs/heads/master@{#330620}
-
xunjieli authored
This CL removes X-Chrome-Exponential-Throttling header support from net/ . BUG=352259 Review URL: https://codereview.chromium.org/1148603003 Cr-Commit-Position: refs/heads/master@{#330619}
-
wfh authored
These files are generated by the msvs-ninja gyp generator. BUG=481707 Review URL: https://codereview.chromium.org/1134493004 Cr-Commit-Position: refs/heads/master@{#330618}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/cbb44be..b1dbd0d TBR=hiroshige@chromium.org,szager@chromium.org,leviw@chromium.org Review URL: https://codereview.chromium.org/1134403004 Cr-Commit-Position: refs/heads/master@{#330617}
-
sievers authored
BUG=488463 Review URL: https://codereview.chromium.org/1133593009 Cr-Commit-Position: refs/heads/master@{#330616}
-
agrieve authored
Appears to be required for split-select to work BUG=484797 Review URL: https://codereview.chromium.org/1142893005 Cr-Commit-Position: refs/heads/master@{#330615}
-
achaulk authored
Atomic is only selected if the kernel indicates support (SetCapability succeeds), the platform wants to use it and DRM is new enough to support it (define) Also fixes up the atomic page flip path, callbacks weren't being handled properly Review URL: https://codereview.chromium.org/1147553003 Cr-Commit-Position: refs/heads/master@{#330614}
-
nednguyen authored
BUG=444705 CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect Review URL: https://codereview.chromium.org/1140353003 Cr-Commit-Position: refs/heads/master@{#330613}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/4b91f76..9db912c CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=bungeman@google.com Review URL: https://codereview.chromium.org/1148563003 Cr-Commit-Position: refs/heads/master@{#330612}
-