- 05 Sep, 2014 16 commits
-
-
zmo authored
Also the collection failure/success. This is to investigate why on some GPU bots gpu info collection randomly fails. BUG=407739 TEST=gpu bots, gpu_unittests R=kbr@chromium.org,piman@chromium.org,jschuh@chromium.org,estade@chromium.org Review URL: https://codereview.chromium.org/534043002 Cr-Commit-Position: refs/heads/master@{#293394}
-
Nico Weber authored
We recently switched from building chromium_builder_tests to building everything, this fixes almost all warnings in the ~1000 translation units we weren't compiling before. No behavior change. BUG=82385 R=scottmg@chromium.org TBR=cpu Review URL: https://codereview.chromium.org/543923002 Cr-Commit-Position: refs/heads/master@{#293393}
-
tim authored
This patch is the basis for mojo transport between a media::Pipeline and a media::Renderer implementation, e.g: [ Pipeline [ media::Renderer [ Mojo Transport ] media::RendererImpl ] Output ] The plan is to continue to iterate on the 'Mojo Transport' chunk without blocking anyone wishing to prototype one level up on either side. As such, some things in this CL like DecodeAndRender are not intended to be the proper long term solution, but allow immediate and mostly isolated prototyping to happen in parallel to development of a utility / class to allow framed data flowing over a mojo::DataPipe. As several TODOs in the CL mention, the current transport implementation incurs a high cost (many large allocations) and has inherently low throughput (can't write new buffer until each buffer is ACKed). BUG=410451 Review URL: https://codereview.chromium.org/491733004 Cr-Commit-Position: refs/heads/master@{#293392}
-
vitalybuka authored
Service process may run as windows service and it fails to create a window station. BUG=410237 Review URL: https://codereview.chromium.org/534413002 Cr-Commit-Position: refs/heads/master@{#293391}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/a17aac8bd4c755c3a24befc7fd297969c0bb0861..26abcf10a4994a0bb13a074d79baa85cd8d67b2c CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=jvanverth@google.com Review URL: https://codereview.chromium.org/540123002 Cr-Commit-Position: refs/heads/master@{#293390}
-
sergeyu authored
Previously XMPP handshake implemented in XmppLoginHandler required 7 roundtrips (excluding TLS handshake). With this change it will be sending each message as soon as possible without waiting response to the previous message. This effectivelly reduces number of required roundtrips to 3. BUG=274652 Review URL: https://codereview.chromium.org/534853002 Cr-Commit-Position: refs/heads/master@{#293389}
-
pkotwicz authored
BUG=410544 TEST=Manual, see bug Review URL: https://codereview.chromium.org/543443002 Cr-Commit-Position: refs/heads/master@{#293388}
-
glaznev authored
Disable HW video decoder acceleration on Samsung Galaxy Tab, which uses buggy omx.sec.vp8.dec as a default VP8 decoder. BUG=408353 Review URL: https://codereview.chromium.org/518563002 Cr-Commit-Position: refs/heads/master@{#293387}
-
cjhopman authored
Adds the android_aidl template to support Android aidl. Adds a DEPRECATED_java_in_dir to android_library and android_apk. This will greatly ease the transition from gyp to gn. Adds BUILD.gn for third_party/eyesfree (using the two new features added). TBR=rsleevi BUG=359249 Review URL: https://codereview.chromium.org/512923002 Cr-Commit-Position: refs/heads/master@{#293386}
-
lfg authored
BUG=402763 Review URL: https://codereview.chromium.org/532423002 Cr-Commit-Position: refs/heads/master@{#293385}
-
wjmaclean authored
This will remove the dependence of these files on chrome/browser/profiles/profile.h, in preparation for their move to extensions/browser/api/declarative. BUG=352293 Review URL: https://codereview.chromium.org/535203003 Cr-Commit-Position: refs/heads/master@{#293384}
-
wez authored
By design unrecognized extension messages should be silently dropped; printing them has the potential to adversely impact the reciever's performance, if unexpected messages are large. Review URL: https://codereview.chromium.org/524843002 Cr-Commit-Position: refs/heads/master@{#293383}
-
gajendra.n authored
Middle click on a bookmark in Bookmark Manager should open the bookmark in new tab without pasting the contents of paste buffer. In Linux, since middle click is used as 'paste', prevent it from pasting if the clicked item is a bookmark. If clicked elsewhere in the Bookmark Manager window, do the default behaviour. BUG=44811 R=bauerb@chromium.org TEST= 1) Add few bookmarks and open Bookmark Manager. 2) Copy one or more bookmark item(s). 3) Middle click on a bookmark item and observe. 4) The clicked bookmark should open in new tab without pasting the copied bookmark inside the window. Review URL: https://codereview.chromium.org/527923002 Cr-Commit-Position: refs/heads/master@{#293382}
-
n.bansal authored
This patches adds support to import autofill form data from Firefox. Firefox stores form data in formhistory.sqlite file and currently Chrome's firefox importer doesn't import data from it. With this patch, "Autofill form data" option is available in import menu and allows user to import form data from Firefox. The imported form data is stored in autofill table and is then used in forms for autocomplete. BUG=59087 Review URL: https://codereview.chromium.org/480953002 Cr-Commit-Position: refs/heads/master@{#293381}
-
ariblue authored
Update smoothness.py to restore summarized results for metrics that don't care if some values are None: mean_input_event_latency, input_event_latency_discrepancy, mean_scroll_update_latency, scroll_update_latency_discrepancy, first_gesture_scroll_update_latency BUG=410018 Review URL: https://codereview.chromium.org/535783002 Cr-Commit-Position: refs/heads/master@{#293380}
-
jeremy authored
Enable background networking for tab_switching measurements so we get some visibility into power impact. BUG=None Review URL: https://codereview.chromium.org/538963003 Cr-Commit-Position: refs/heads/master@{#293379}
-
- 04 Sep, 2014 24 commits
-
-
erg authored
These ended up having different bugs in different apps. In the mojo_sample_app, we didn't pass a glResizeCHROMIUM() call on resize. In mojo_demo_launcher, we weren't plumbing events from the aura window hierarchy to the ServerView correctly. BUG=393244 Review URL: https://codereview.chromium.org/536153002 Cr-Commit-Position: refs/heads/master@{#293378}
-
rch authored
Fix a bug in QuicHttpStream::Close in which response_status_ was not being set. This would cause the ReadResponseHeaders method to return OK even though the response headers was NULL. BUG=409871 Review URL: https://codereview.chromium.org/544773002 Cr-Commit-Position: refs/heads/master@{#293377}
-
wtc authored
Includes the following CLs: Update to NSPR 4.10.7. https://codereview.chromium.org/539213003/ R=rtenneti@chromium.org,zra@google.com BUG= Review URL: https://codereview.chromium.org/544743002 Cr-Commit-Position: refs/heads/master@{#293376}
-
dschuff authored
Revert of NaCl: Update revision in DEPS, r13679 -> r13687 (patchset #1 id:1 of https://codereview.chromium.org/537003002/) Reason for revert: This breaks NaCl SDK tests on mac (presumably because that's the only one using the 32-bit IRT). See https://code.google.com/p/nativeclient/issues/detail?id=3935 Original issue's description: > NaCl: Update revision in DEPS, r13679 -> r13687 > > This pulls in the following Native Client changes: > > r13680: (bradnelson) Add back in android_tools, but in the right location. > r13682: (dyen) Added irt extension support for supplying the nacl_irt_memory interface. > r13683: (bradnelson) Disabling flaky test under asan. > r13684: (hans) service_runtime_x86_64.gyp: pass /nologo to ml64.exe > r13685: (mseaborn) Use uint32_t for untrusted pointer args: mmap() and munmap() syscalls > r13686: (jfb) LLVM 3.5 merge: add missing dependencies to PNaCl build > r13687: (dschuff) Build x86-32 IRT with PNaCl > > R=mseaborn@chromium.org,bradnelson@chromium.org > BUG= https://code.google.com/p/nativeclient/issues/detail?id=3910 > TEST=browser_tests and nacl_integration > > Committed: https://chromium.googlesource.com/chromium/src/+/708bfbfe22cbc2bcd24a996211cd9a41da96e96e TBR=bradnelson@chromium.org,mseaborn@chromium.org,bradnelson@google.com NOTREECHECKS=true NOTRY=true BUG= https://code.google.com/p/nativeclient/issues/detail?id=3910 BUG= https://code.google.com/p/nativeclient/issues/detail?id=3935 Review URL: https://codereview.chromium.org/540163002 Cr-Commit-Position: refs/heads/master@{#293375}
-
isherman authored
BUG=410934 TEST=none R=tengs@chromium.org Review URL: https://codereview.chromium.org/543493003 Cr-Commit-Position: refs/heads/master@{#293374}
-
jkarlin authored
Revert of This is a reland of ServiceWorkerCache::Keys. (patchset #3 id:70001 of https://codereview.chromium.org/528233003/) Reason for revert: Now getting a Valgrind leak that is likely due to this CL: Suppression (error hash=#935FB14CBC8B5858#): For more info on using suppressions see http://dev.chromium.org/developers/tree-sheriffs/sheriff-details-chromium/memory-sheriff#TOC-Suppressing-memory-reports { <insert_a_suppression_name_here> Memcheck:Leak fun:_Znw* fun:_ZN9__gnu_cxx13new_allocatorIN10disk_cache20SimpleEntryOperationEE8allocateEmPKv fun:_ZNSt11_Deque_baseIN10disk_cache20SimpleEntryOperationESaIS1_EE16_M_allocate_nodeEv fun:_ZNSt5dequeIN10disk_cache20SimpleEntryOperationESaIS1_EE16_M_push_back_auxIJS1_EEEvDpOT_ fun:_ZNSt5dequeIN10disk_cache20SimpleEntryOperationESaIS1_EE12emplace_backIJS1_EEEvDpOT_ fun:_ZNSt5dequeIN10disk_cache20SimpleEntryOperationESaIS1_EE9push_backEOS1_ fun:_ZNSt5queueIN10disk_cache20SimpleEntryOperationESt5dequeIS1_SaIS1_EEE4pushEOS1_ fun:_ZN10disk_cache15SimpleEntryImpl5CloseEv fun:_ZN10disk_cache12EntryDeleterclEPNS_5EntryE fun:_ZN4base8internal15scoped_ptr_implIN10disk_cache5EntryENS2_12EntryDeleterEED2Ev fun:_ZN10scoped_ptrIN10disk_cache5EntryENS0_12EntryDeleterEED2Ev } Original issue's description: > This is a reland of ServiceWorkerCache::Keys. > > Reland of https://codereview.chromium.org/477973002/ > > There was a memory leak. EndEnumeration wasn't called on the iterator. > > Fixed and tested with ASAN. > > The leak was detected because SimpleCache doesn't clean up its enumerators on deletion, but it should. See https://code.google.com/p/chromium/issues/detail?id=410276 > > BUG=392621 > > Committed: https://chromium.googlesource.com/chromium/src/+/a3a3703b91203db3e2248d656b86cb26bf2e30e3 TBR=michaeln@chromium.org NOTREECHECKS=true NOTRY=true BUG=392621 Review URL: https://codereview.chromium.org/538263002 Cr-Commit-Position: refs/heads/master@{#293373}
-
zqiu authored
Added histograms "Network.Shill.Cellular.IPv6ConnectivityStatus" and "Network.Shill.Wifi.IPv6ConnectivityStatus" for tracking the IPv6 connectivity status when network connection is established. This allows us to know the readiness of IPv6 connectivity in the field. Added histograms "Network.Shill.Cellular.NetworkConnectionIPType" and "Network.Shill.Wifi.NetworkConnectionIPType" for tracking the types of IP configuration use for establishing network connections. This allows us to track the usage of the newly added IPv6 connection support. BUG=chromium:207192 Review URL: https://codereview.chromium.org/539163003 Cr-Commit-Position: refs/heads/master@{#293372}
-
jaekyun authored
On android platform, it often fails to fetch searchdomaincheck url right after network changes. To fix the failure, this patch modifies GoogleURLTracker to listen to OnNetworkChanged instead of OnIPAddressChanged. BUG=407442 Review URL: https://codereview.chromium.org/512843002 Cr-Commit-Position: refs/heads/master@{#293371}
-
estade authored
BUG=409867 Review URL: https://codereview.chromium.org/522023003 Cr-Commit-Position: refs/heads/master@{#293370}
-
skyostil authored
A previous patch changed the scheduling policy so that scroll handlers get more of a chance of completing in the same frame as the scroll update ("best effort sync scrolling"). It turns out this went a little too far by fully disabling prefer smoothness mode in the presense of scroll handlers. For instance, this caused us to start synchronously waiting for asynchronous texture upload completion, leading to skipped frames. This patch adjusts the logic so that scroll handlers are still given an opportunity to complete within the same frame (i.e., the deadline isn't triggered early), but the tree activation policy is to prefer existing content over new content. We also rename the smoothness mode in the scheduler to "impl latency takes priority" to make its purpose clearer. BUG=404267 Review URL: https://codereview.chromium.org/522903002 Cr-Commit-Position: refs/heads/master@{#293369}
-
damienv authored
A media task runner can receive tasks whose scheduling depends on a media timestamp. The balanced media task runner factory generates some media task runners whose task schedulings are loosely synchronized between each other. A direct application is to query audio and video frames in a balanced way, which minimizes the memory used for muxed streams. BUG=408189 Review URL: https://codereview.chromium.org/534893002 Cr-Commit-Position: refs/heads/master@{#293368}
-
hubbe authored
Minor cleanup cl. Review URL: https://codereview.chromium.org/519443002 Cr-Commit-Position: refs/heads/master@{#293367}
-
raymes authored
This replaces usage of NPObject in pepper with gin-backed V8 objects. It is unfortunate that this CL is so large, but there isn't a nice way to have the old implementation and the new one side-by-side. There are 4 major parts to this CL: 1) Changing the HostVarTracker to track V8ObjectVars rather than NPObjectVars (host_var_tracker.cc). 2) Changing plugin elements (in plugin_object.cc) to be gin-backed objects. 3) Changing postMessage bindings (message_channel.cc) be gin-backed objects. 4) Changing the implementation of PPB_Var_Deprecated (ppb_var_deprecated_impl.cc) to call directly into V8. BUG=351636 Review URL: https://codereview.chromium.org/459553003 Cr-Commit-Position: refs/heads/master@{#293366}
-
rvargas authored
1. Automate the selection of the proper channel to enable the verifier. Now the code is enabled at runtime. 2. Switch to a hash_map to track handles. 3. Intercept CloseHandle to detect the code that is closing handles owned by ScopedHandles. The initial implementation only covers chrome.exe/dll, but the plan is to extend that in the future to all modules loaded in the process. BUG=362176 See https://codereview.chromium.org/490043002/ for the initial review. Review URL: https://codereview.chromium.org/510633002 Cr-Commit-Position: refs/heads/master@{#293365}
-
rdevlin.cronin authored
Original CL: https://codereview.chromium.org/512693003/ This was reverted because LocationBarBrowserTest.PageActionUITest is flaky on Mac. Resubmit this, but with the flaky test disabled on mac. BUG=408261 BUG=410866 Review URL: https://codereview.chromium.org/543783002 Cr-Commit-Position: refs/heads/master@{#293364}
-
mukai authored
BUG=387069 R=bauerb@chromium.org, jochen@chromium.org TEST=build succeeds Review URL: https://codereview.chromium.org/538753003 Cr-Commit-Position: refs/heads/master@{#293363}
-
fsamuel authored
BUG=410029, 273089 Review URL: https://codereview.chromium.org/529203002 Cr-Commit-Position: refs/heads/master@{#293362}
-
wez authored
BUG=408728,410593 Review URL: https://codereview.chromium.org/532913003 Cr-Commit-Position: refs/heads/master@{#293361}
-
Brett Wilson authored
It also hooks up libpdf which chrome requires at startup. Adds the enable_hidpi and use_athena build flags. Adds a locales list. This makes the chrome target actually runnable from a GN build. R=jamesr@chromium.org Review URL: https://codereview.chromium.org/541153002 Cr-Commit-Position: refs/heads/master@{#293360}
-
Jun Mukai authored
This is separated from https://chromiumcodereview.appspot.com/535373002/ just for CQ safety. The first one was reverted because it has silly typo on file names. TBR=yoz@chromium.org TEST=None BUG=407777 Review URL: https://codereview.chromium.org/541173002 Cr-Commit-Position: refs/heads/master@{#293359}
-
robert.bradford authored
GLHelper has functionality for testing for appropriate GL readback format support, caching this information where appropriate. This change switches RendererGpuVideoAcceleratorFactories over to using that code for supported format identification and glReadPixels in the desired format. The code continues to do a software swizzle if necessary. TEST=WebGL conformance tests BUG=None Review URL: https://codereview.chromium.org/456823002 Cr-Commit-Position: refs/heads/master@{#293358}
-
erikchen authored
No fancy animations, this just adds basic functionality. In fullscreen mode, the tabs are shifted over, and traffic light buttons are manually added in. BUG=405564 Review URL: https://codereview.chromium.org/508313002 Cr-Commit-Position: refs/heads/master@{#293357}
-
lfg authored
BUG=352290 Review URL: https://codereview.chromium.org/522763002 Cr-Commit-Position: refs/heads/master@{#293356}
-
Jun Mukai authored
This reverts commit 5f5a7f3f. TBR=yoz@chromium.org TEST=None BUG=407777 Review URL: https://codereview.chromium.org/541923002 Cr-Commit-Position: refs/heads/master@{#293355}
-