- 04 Sep, 2014 40 commits
-
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#293279}
-
hubbe authored
This is issue 511393007 all over again, but doesn't enable the test so it won't get reverted again. BUG=356842 Review URL: https://codereview.chromium.org/540553002 Cr-Commit-Position: refs/heads/master@{#293278}
-
dtu authored
This is a power monitor that reads the Intel RAPL MSRs to get energy measurements. It uses a defunct open source DLL and kernel driver, WinRing0, to access the MSRs. WinRing0 is a little wonky, and we have to install the kernel driver to the Python executable's directory. Python must be run as Administrator for this to work. BUG=336558 TEST=tools/telemetry/run_tests winring0 Review URL: https://codereview.chromium.org/536243002 Cr-Commit-Position: refs/heads/master@{#293277}
-
dtu authored
While it's not a direct Telemetry dependency, it's referenced in the doc for setting up ChromeOS. http://www.chromium.org/developers/telemetry/run_locally Also, alphabetize the bootstrap_deps list. BUG=None. TEST=None. R=tonyg Review URL: https://codereview.chromium.org/540553004 Cr-Commit-Position: refs/heads/master@{#293276}
-
nyquist authored
This also changes the way DomDistillerResult is read from base::Values by updating to the new version of DomDistillerResult::ReadFromValue which takes in a pointer to DomDistillerResult. This CL also makes it possible to continue using the update_domdistiller_js.sh script without modification by moving the BUILD.gn file for protos to outside of the generated package folder. Picked up changes: 432b2dc Added support for reading protos into a pointer. 32f096c don't prune a subtree when its only child is a text node. 90dc83c bump up nested-table heuristic 6f59530 Make comment filter a little more restrictive. BUG=368941,408292,409274 Review URL: https://codereview.chromium.org/514423002 Cr-Commit-Position: refs/heads/master@{#293275}
-
lucinka.brozkova authored
WebContentsObserver::web_contents() is now public + cleanup of unnecessary getters. BUG=408560 Review URL: https://codereview.chromium.org/525793002 Cr-Commit-Position: refs/heads/master@{#293274}
-
sergeyu authored
After this change the webapp will be use XMPP for signaling instead of WCS. BUG=274652 Review URL: https://codereview.chromium.org/530213004 Cr-Commit-Position: refs/heads/master@{#293273}
-
tzik authored
BUG=None TBR=mnaganov@chromium.org Review URL: https://codereview.chromium.org/542513002 Cr-Commit-Position: refs/heads/master@{#293272}
-
thestig authored
Review URL: https://codereview.chromium.org/520303003 Cr-Commit-Position: refs/heads/master@{#293271}
-
peria authored
if it fails to load ServiceMetadata's information from DB. It tries to initialize for 5 times. BUG=409737 TEST=./unit_tests --gtest_filter="Metadata* Review URL: https://codereview.chromium.org/527163002 Cr-Commit-Position: refs/heads/master@{#293270}
-
brettw authored
TBR=jamesr Review URL: https://codereview.chromium.org/535173003 Cr-Commit-Position: refs/heads/master@{#293269}
-
mukai authored
BUG=407777 R=oshima@chromium.org TEST=manually Review URL: https://codereview.chromium.org/537113002 Cr-Commit-Position: refs/heads/master@{#293268}
-
luken authored
Metro mode requires a GPU process but there are a few tablets and other devices that don't have a GPU. Currently we don't expose the menu option for Metro mode on these devices. This CL exposes the Metro mode option for all Windows 8+ machines, and if a GPU isn't normally available it turns on WARP support for Metro mode only. BUG=314954 Review URL: https://codereview.chromium.org/435383002 Cr-Commit-Position: refs/heads/master@{#293267}
-
myid.shin authored
BUG=N/A R=pdr@chromium.org Review URL: https://codereview.chromium.org/540623004 Cr-Commit-Position: refs/heads/master@{#293266}
-
alekseys authored
BUG=397741 Review URL: https://codereview.chromium.org/540563002 Cr-Commit-Position: refs/heads/master@{#293265}
-
scherkus authored
The method declaration in the header file was left over in e2ea5183 when EME related code was moved to EncryptedMediaSupportImpl. TBR=acolwell Review URL: https://codereview.chromium.org/537193002 Cr-Commit-Position: refs/heads/master@{#293264}
-
scherkus authored
Until we can rework the guts of HTMLMediaElement and its interaction with WebMediaPlayer, have WebMediaPlayerImpl track an ended state so it can return the duration HTMLMediaElement expects to fire the ended event. This makes it easier to change how Pipeline's audio/video time is implemented without worrying about the pecularities of HTMLMediaElement. BUG=349543,370634 Review URL: https://codereview.chromium.org/526443003 Cr-Commit-Position: refs/heads/master@{#293263}
-
danakj authored
When a tile is shared (no invalidation) and is being drawn on the active tree (ready-to-draw), then that tile is not marked as required for activation since activating it can't cause a bad-resolution flash. However, we also would also say that "twin_had_missing_tile" in this scenario, which causes us to mark low-res tilings as required. But this is a bug since the tile is not missing in this case, and we do not need low res to fill it in. Instead, check to see if the active tree's tile is /not/ ready-to-draw. When that is the case, the active tile is not being drawn and is actually missing. Then a low res tile should be required if the active tree is showing a low res tile in the same place. For perf tests without scrolling (ie pages that just update in place without input), this fixes us to never require low res tiles to activate, since we won't show them. R=enne, vmpstr BUG=407121 Review URL: https://codereview.chromium.org/540663002 Cr-Commit-Position: refs/heads/master@{#293262}
-
shrikant authored
Code to take into account font path specified in registry which matches system font folder. Also adding UMA to measure font load times. R=scottmg,cpu,ananta BUG=408393 Review URL: https://codereview.chromium.org/541543002 Cr-Commit-Position: refs/heads/master@{#293261}
-
tzik authored
BUG=None Review URL: https://codereview.chromium.org/536783003 Cr-Commit-Position: refs/heads/master@{#293260}
-
simonhong authored
Proxy should use BeginFrame() to request new BeginFrame instead of BeginImplFrame(). The scheduler turns BeginFrames into BeginImplFrames or BeginRetroFrames as necessary to make sure we don't start a new BeginImplFrame before the previous deadline. Some of public methods that are only used by itself moved into the private. R=brianderson@chromium.org BUG=NONE TEST=cc_unittests Review URL: https://codereview.chromium.org/536123002 Cr-Commit-Position: refs/heads/master@{#293259}
-
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 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 Review URL: https://codereview.chromium.org/504823003 Cr-Commit-Position: refs/heads/master@{#293258}
-
iseki authored
* "added" type is added * "num_total_jobs" member is added * and this is for displaying the total number of jobs in Chrome OS file manager BUG=400636 TEST= manually 1. Copy the local file to drive directory. 2. Observe the status of syncing status. Review URL: https://codereview.chromium.org/507293002 Cr-Commit-Position: refs/heads/master@{#293257}
-
raymes authored
Layout changes trigger view changes which get sent to the plugin. With the in process plugin (PDF), the plugin is notified synchronously of the view change. It then might execute scripts synchronously in the plugin but scripts are not meant to be executed during layout changes. This change runs the scripts asynchronously. I tested print preview to ensure that it still works correctly. Note that once we remove in-process plugins this won't be an issue because view changes happen asynchronously out of process (besides the fact that synchronous script execution is limited to private plugins). BUG=351636 Review URL: https://codereview.chromium.org/530363002 Cr-Commit-Position: refs/heads/master@{#293256}
-
dcheng authored
BUG=110610 TBR=rpaquay@chromium.org Review URL: https://codereview.chromium.org/536623003 Cr-Commit-Position: refs/heads/master@{#293255}
-
dcheng authored
Revert of Removing X11 native_event uses for key events. (patchset #6 id:160001 of https://codereview.chromium.org/479873002/) Reason for revert: Causing check_licenses to fail on android_clang_dbg_recipe trybot: The following files are whitelisted unnecessarily. You must remove the following files from the whitelist. content/browser/renderer_host/web_input_event_aurax11.cc The following files are whitelisted, but do not exist. content/browser/renderer_host/web_input_event_aurax11.cc Original issue's description: > Removing uses of X11 native key events. > > BUG=380349 > > Committed: https://chromium.googlesource.com/chromium/src/+/bbb7ea7c66f18298079eea4a6b24834986f4a822 TBR=sadrul@chromium.org,sky@chromium.org,erg@chromium.org,jamesr@chromium.org,kpschoedel@chromium.org NOTREECHECKS=true NOTRY=true BUG=380349 Review URL: https://codereview.chromium.org/536313002 Cr-Commit-Position: refs/heads/master@{#293254}
-
jam authored
Revert of Add LocationBar PageAction tests (patchset #4 id:80001 of https://codereview.chromium.org/512693003/) Reason for revert: Flaky test see the following runs where the test fails even with 3 retries http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9713 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9656 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9574 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9511 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9405 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9367 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9252 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9253 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9223 http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_swarming/builds/9213 Original issue's description: > Add LocationBar PageAction tests > > Page actions in the location bar have been somewhat loosely tested as a side- > effect of the page actions api testing, but (near as I can tell), we never > explicity test the ui for page actions. > > This is a problem because the extensions tests shouldn't care about the UI, and > soon won't, since where the page actions are in the UI may change (i.e., > location bar vs toolbar). > > Fix this by adding a few basic UI tests for page actions in the location bar. > > BUG=408261 > > Committed: https://chromium.googlesource.com/chromium/src/+/0abaca08e99fa6671758a96829b99aa941696e41 TBR=finnur@chromium.org,sky@chromium.org,rdevlin.cronin@chromium.org NOTREECHECKS=true NOTRY=true BUG=408261 Review URL: https://codereview.chromium.org/537813002 Cr-Commit-Position: refs/heads/master@{#293253}
-
sievers authored
This callback implies that the resources are gone (because LTH was deleted). What ends up happening is that the resources get deleted while LTH still tries to call GetBitmap() on them. This still needs some working invalidation mechanism for Thumbnails, which don't have a persistent Bitmap they return from GetBitmap(). BUG=406879 NOTRY=True TBR=dtrainor@chromium.org Review URL: https://codereview.chromium.org/543543002 Cr-Commit-Position: refs/heads/master@{#293252}
-
vadimsh authored
Revert of Add test for ChromeVox keyboard commands. (patchset #7 id:120001 of https://codereview.chromium.org/490443002/) Reason for revert: Broke interactive_ui_tests on Linux ChromiumOS Ozone: http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Ozone%20Tests%20%282%29/builds/1626/steps/interactive_ui_tests Failing tests: ChromeVoxNavigateAndSelect_0 ChromeVoxPrefixKey_0 ChromeVoxPrefixKey_1 ChromeVoxShiftSearch_0 ChromeVoxShiftSearch_1 Original issue's description: > Add test for ChromeVox keyboard commands. > > This is just a couple of quick sanity checks to prevent future regressions > like the one in the linked bug. It tests both a Search+Shift shortcut and > the corresponding Prefix Key shortcut. > > Adds support for sending the meta modifier key in > aura/x11 tests. > > BUG=404470 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291547 > > Committed: https://chromium.googlesource.com/chromium/src/+/8cab2737f1cb6e6011b0946f6bef5027868602c0 TBR=dtseng@chromium.org,sky@chromium.org,dmazzoni@chromium.org NOTREECHECKS=true NOTRY=true BUG=404470 Review URL: https://codereview.chromium.org/535283004 Cr-Commit-Position: refs/heads/master@{#293251}
-
pkotwicz authored
BUG=None TEST=None Review URL: https://codereview.chromium.org/536113002 Cr-Commit-Position: refs/heads/master@{#293250}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/74364c97740eb48c86d6e7b42520c77130eb1486..0c88d8233ba3a8baa9b4dd6ef515def6b3749980 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=jvanverth@google.com Review URL: https://codereview.chromium.org/537723002 Cr-Commit-Position: refs/heads/master@{#293249}
-
bruening authored
TBR=zhaoqin@chromium.org BUG=none NOTRY=true Review URL: https://codereview.chromium.org/532883004 Cr-Commit-Position: refs/heads/master@{#293248}
-
shannonwoods authored
BUG=82385,angle:736 https://chromium.googlesource.com/angle/angle/+log/a502c749b249df6460326c4e5354f0549cc698d8..ab56c6aeff8ea52a8927a947ec20d19eb4564fc9 Review URL: https://codereview.chromium.org/538533002 Cr-Commit-Position: refs/heads/master@{#293247}
-
reillyg authored
Unify these two parts of out USB device support. The //device tree is the cannonical location for hardware device APIs. BUG= Review URL: https://codereview.chromium.org/497363004 Cr-Commit-Position: refs/heads/master@{#293246}
-
reveman authored
This allows destination textures with GL_BGRA_EXT as internal format to be used with CopyTexture. BUG=371718 Review URL: https://codereview.chromium.org/539703002 Cr-Commit-Position: refs/heads/master@{#293245}
-
aelias authored
GPU raster was observed to cause pixel corruption on the Galaxy Note 2 (GT-N7100, Mali-400 MP, ES 2.0). Remove it from the GPU raster whitelist, as well as the international Galaxy S3 (GT-I9300) which also uses Mali 400. Also expand the Nexus 10 blacklist to all Mali-T604 devices. NOTRY=true BUG=409970 Review URL: https://codereview.chromium.org/537183003 Cr-Commit-Position: refs/heads/master@{#293244}
-
hubbe authored
Cast was originally intended to tell vp8 to only reference buffers which have been ACKed. However, that mode was buggy and disabled. This CL fixes it again. The three-buffer mode lets the receiver drop frames and continue, which should be quite useful if we want lower latency. BUG=351596 Review URL: https://codereview.chromium.org/339743002 Cr-Commit-Position: refs/heads/master@{#293243}
-
bnc authored
Code cleanup: Remove network_prediction_enabled_ from NetPrefObserver, and enabled_ and set_enabled() from PrerenderManager. Earlier CLs on this issue update the Prerender mechanism and make these members/methods obsolete. BUG=334602 Review URL: https://codereview.chromium.org/519583005 Cr-Commit-Position: refs/heads/master@{#293242}
-
blink-deps-roller authored
https://chromium.googlesource.com/chromium/blink/+log/9d34a87dee82cbdcd5876669aa1cd1a430289e09..9a051c526402aedfa6bc73e6699838c777b679cf TBR=tkent@chromium.org,arv@chromium.org Review URL: https://codereview.chromium.org/539713002 Cr-Commit-Position: refs/heads/master@{#293241}
-
pkotwicz authored
the history thread. BUG=402104 TEST=None Review URL: https://codereview.chromium.org/531493002 Cr-Commit-Position: refs/heads/master@{#293240}
-