- 15 Apr, 2015 40 commits
-
-
ssid authored
The chrome profiler opens file without utf-8 encoding, so the html trace file was not getting generated. This CL changes the file opening to have utf-8 encoding. BUG=477295 Review URL: https://codereview.chromium.org/1068693003 Cr-Commit-Position: refs/heads/master@{#325230}
-
azarchs authored
This fixes the redness in the orderfile bot due to the WPR server failing to start due to certs not being installed. Review URL: https://codereview.chromium.org/1089163004 Cr-Commit-Position: refs/heads/master@{#325229}
-
jmadill authored
https://chromium.googlesource.com/angle/angle/+log/bc709339..4a1858b849 BUG=468852,475085,429792,436191 Review URL: https://codereview.chromium.org/1082083003 Cr-Commit-Position: refs/heads/master@{#325228}
-
peter authored
R=mvanouwerkerk@chromium.org BUG= Review URL: https://codereview.chromium.org/1089563002 Cr-Commit-Position: refs/heads/master@{#325227}
-
aruslan authored
NOTE: this change will incur an allocation on every update if the brightness value is less than 1.0. BUG=474612 Review URL: https://codereview.chromium.org/1083203002 Cr-Commit-Position: refs/heads/master@{#325226}
-
chrome://policypbond authored
Added Asset Id, Location of the device and directory API ID to the device policy box. BUG=464184 Review URL: https://codereview.chromium.org/1052943002 Cr-Commit-Position: refs/heads/master@{#325225}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/a1eb297f..826e9c27 Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1086063002 Cr-Commit-Position: refs/heads/master@{#325224}
-
timurrrr authored
TBR=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1055933007 Cr-Commit-Position: refs/heads/master@{#325223}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/cf9cc97..33c31b1 TBR=mlamouri@chromium.org Review URL: https://codereview.chromium.org/1087103003 Cr-Commit-Position: refs/heads/master@{#325222}
-
iceman authored
It allows test GPUTestConfigTest.LoadCurrentConfig to pass on Yosemite. BUG=474551 TEST=gpu_unittests --gtest_filter="GPUTestConfigTest.LoadCurrentConfig" Review URL: https://codereview.chromium.org/1068813002 Cr-Commit-Position: refs/heads/master@{#325221}
-
vitbar authored
Some search engines specify non UTF-8 input encoding, e.g. the "mail.ru" engine specifies "windows-1251". After this patch the TemplateURL::ExtractSearchTermsFromURL function works correctly in such cases. R=pkasting@chromium.org Review URL: https://codereview.chromium.org/1088523002 Cr-Commit-Position: refs/heads/master@{#325220}
-
shuchen authored
BUG=477135 TEST=Verified on sandbox. Review URL: https://codereview.chromium.org/1083213003 Cr-Commit-Position: refs/heads/master@{#325219}
-
dgozman authored
BUG=476389 Review URL: https://codereview.chromium.org/1082623002 Cr-Commit-Position: refs/heads/master@{#325218}
-
perezju authored
This makes it easier to write what turns out to be the most common usage of this method: ensure that some processes are not running, and don't care if none is found. Also helps to distinguish an adb/device error (which should trigger a retry), from cases where no processes to kill are found (where the caller doesn't need/want to retry). Clients that benefit from this flag are also updated. BUG=475845 Review URL: https://codereview.chromium.org/1079113002 Cr-Commit-Position: refs/heads/master@{#325217}
-
tyoshino authored
Android device manager should not drop WebSocket frame data even if it arrives together with handshake response R=dgozman BUG=475497 Review URL: https://codereview.chromium.org/1078733002 Cr-Commit-Position: refs/heads/master@{#325216}
-
yawano authored
BUG=473604 TEST=manually tested Review URL: https://codereview.chromium.org/1073003003 Cr-Commit-Position: refs/heads/master@{#325215}
-
hans authored
I haven't worked on speech for a long time, so I'm not a good owner. BUG=none TBR=tommi Review URL: https://codereview.chromium.org/1089203002 Cr-Commit-Position: refs/heads/master@{#325214}
-
ginkage authored
BUG=475936 Review URL: https://codereview.chromium.org/1086563003 Cr-Commit-Position: refs/heads/master@{#325213}
-
vitalybuka authored
Current implementation of this check has no value. Browser refreshes policies only if it started without --check-cloud-print-connector-policy. In this case browser will enforce the policy from own side and disable service. BUG=327022 Review URL: https://codereview.chromium.org/1078213004 Cr-Commit-Position: refs/heads/master@{#325212}
-
magjed authored
Revert of Mac Video Capture AVFoundation: Calculate compressed frame size for MJPEG. (patchset #2 id:20001 of https://codereview.chromium.org/912293005/) Reason for revert: An improved version of ValidateJpeg in libyuv has been rolled into chromium and this CL is no longer needed. Original issue's description: > Mac Video Capture AVFoundation: Calculate compressed frame size for MJPEG. > > The frame size we receive from AVFoundation is sometimes excessive, e.g. the size of the uncompressed frame. For example, for a JPEG YUV422, the reported size might be 1280*720*2 = 1.8MB, while the actual compressed data is only 260kB. > > In these cases, libyuv::MJPGToI420 spends a lot of time in libyuv::ValidateJpeg, as much as 25%. The reason for this is that ValidateJpeg starts at the end of the buffer and loops backwards looking for the End Of Image (EOI) marker. > > This CL tries to optimize these cases by finding the EOI by looping forwards instead of backwards, and reporting the actual frame size to libyuv::MJPGToI420. > > BUG=346634,460497 > > Committed: https://crrev.com/dc556d2b54354adc95ee5474600f469f7ae65692 > Cr-Commit-Position: refs/heads/master@{#317333} TBR=perkj@chromium.org,mcasas@chromium.org,tommi@chromium.org,torbjorng@google.com,torbjorng@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=346634,460497 Review URL: https://codereview.chromium.org/1089173003 Cr-Commit-Position: refs/heads/master@{#325211}
-
treib authored
This is the Mac part for https://crrev.com/1018003002 and https://crrev.com/1028603003 BUG=463463 Review URL: https://codereview.chromium.org/1061233004 Cr-Commit-Position: refs/heads/master@{#325210}
-
hirono authored
* Wait for preparation of each child request. * Then generate multipart request that consists each child request. BUG=451917 TEST=DriveApiRequestsTest.BatchUploadRequest Review URL: https://codereview.chromium.org/1084523002 Cr-Commit-Position: refs/heads/master@{#325209}
-
treib authored
Add a test to make sure this happens, and while we're here, clean up some other supervised users+extensions tests. Also, yak shaving: Rebuild the avatar menu when a profile's "IsOmitted" state changes. BUG=397951 Review URL: https://codereview.chromium.org/1078713002 Cr-Commit-Position: refs/heads/master@{#325208}
-
bartfab authored
Revert of NaCl: Update revision in DEPS, bd095c3 -> 8e69819 (patchset #1 id:1 of https://codereview.chromium.org/1080363002/) Reason for revert: Breaks check_licenses on Linux: Using base directory: src Checking: src 'native_client/toolchain/linux_x86/arm_trusted/usr/include/X11/Xwindows.h' has non-whitelisted license 'BSD MIT/X11 (BSD like)' 'native_client/toolchain/linux_x86/arm_trusted/usr/include/X11/Xwinsock.h' has non-whitelisted license 'BSD MIT/X11 (BSD like)' 'native_client/toolchain/linux_x86/arm_trusted/usr/include/gdk-pixbuf-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h' has non-whitelisted license 'MPL (v1.1) LGPL (unversioned/unknown version)' Original issue's description: > NaCl: Update revision in DEPS, bd095c3 -> 8e69819 > > This pulls in the following Native Client changes: > > 36f7841: (petarj@mips.com) [MIPS] Change TEST_IS_LOCK_FREE for 64bit types > c827ec5: (dschuff@chromium.org) Add torture test configs for nacl-clang > 7005393: (dschuff@chromium.org) Add missing EH failures exclusion file for clang > 9b89306: (teravest@chromium.org) Revert of Remove NACL_BUILD_ARCH_MAP (patchset #1 id:1 of https://codereview.chromium.org/1039253003/) > 69c5742: (jfb@chromium.org) PNaCl: Update LLVM revision in pnacl/COMPONENT_REVISIONS > 57f974d: (dschuff@chromium.org) Update and triage gcc torture known failures > 10a7211: (shinyak@chromium.org) Check archive on Windows. > da6385f: (dschuff@chromium.org) PNaCl: Update compiler-rt revision in pnacl/COMPONENT_REVISIONS > 0a06a29: (jvoung@chromium.org) Make the torture test known failures for PNaCl a bit stricter. > 6a47074: (dschuff@chromium.org) Run compiler_rt test suite on FYI bots > 021d15a: (jvoung@chromium.org) PNaCl: Update LLVM revision in pnacl/COMPONENT_REVISIONS > 9b7cee1: (sbc@chromium.org) Cleanup libnacl's pthread.h > 3a908f6: (sbc@chromium.org) Add pthead_condattr_* function to libpthread > 002a793: (dschuff@chromium.org) FYI bot script: Fixes for compiler-rt test suite > 5e87ba2: (dschuff@chromium.org) Remove libstdc++ tests from toolchain_tests > 4d31bac: (dschuff@chromium.org) Fix breakage from 5e87ba2d2c3376efcec763954b5cb81c332d20d1 > d25fdca: (dschuff@chromium.org) PNaCl: Update compiler-rt revision in pnacl/COMPONENT_REVISIONS > 0ebde97: (dschuff@chromium.org) Remove libstdc++ support from PNaCl toolchain > 9c667ae: (dschuff@chromium.org) Update revision for PNaCl > 2ef8b63: (dschuff@chromium.org) Run ARM tests first on the PNaCl toolchain linux64 bot > 40b7e45: (dschuff@chromium.org) Run memcpy_move_set test with and without -fno-builtin > 11953a3: (phosek@chromium.org) Use depot_tools version of Git on Windows for toolchain build > 6863b50: (sbc@chromium.org) Add 'arm_trusted' to the 'nacl_core_sdk' package list > 4dfff0b: (jvoung@chromium.org) Have CMake LLVM build share CFLAGS/CXXFLAGS with autoconf (e.g., libc++ flags). > 47e9502: (hidehiko@chromium.org) Non-SFI mode: Small update for nacl_helper_nonsfi. > 8e69819: (sbc@chromium.org) Add O_EXCL support to sel_ldr open syscall > > Changes: https://chromium.googlesource.com/native_client/src/native_client/+log/bd095c3ad5f1f25a9c6f44b7f38cec89383a5c33..8e6981959f76f5480f74b2b4819d3b260b1b2062 > > BUG=none > TEST=browser_tests and nacl_integration > CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_chromium_dbg_32_ng,linux_nacl_sdk_build > > Committed: https://crrev.com/00471ef5d3d886d71b022ad6eaac317e6c9d5e08 > Cr-Commit-Position: refs/heads/master@{#325177} TBR=dschuff@chromium.org,mseaborn@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=none Review URL: https://codereview.chromium.org/1089163003 Cr-Commit-Position: refs/heads/master@{#325207}
-
ginkage authored
BUG=475566 Review URL: https://codereview.chromium.org/1057393004 Cr-Commit-Position: refs/heads/master@{#325206}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/3f6f629..cf9cc97 TBR=japhet@chromium.org,mlamouri@chromium.org Review URL: https://codereview.chromium.org/1064113005 Cr-Commit-Position: refs/heads/master@{#325205}
-
guidou authored
A race used to be detected by TSAN when running WebRtcInternalsBrowserTest.WithRealPeerConnectionCall This test is currently disabled due to flakiness (see crbug.com/272413). However, the webrtc::EventPosix issues were refactored and no longer cause races with that (disabled) test (or any other test). BUG=246970 Review URL: https://codereview.chromium.org/1088923003 Cr-Commit-Position: refs/heads/master@{#325204}
-
pthatcher authored
WebRTC 8989:8999 Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/5ffd4ec..b74b769 Libjingle 8990:8994 Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/d872289..2a568fa And remove some deleted files from build files. TBR= BUG= Review URL: https://codereview.chromium.org/1057653005 Cr-Commit-Position: refs/heads/master@{#325203}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#325202}
-
yawano authored
BUG=430651 TEST=FileManagerJsTest.FileOperationManagerTest Review URL: https://codereview.chromium.org/1085823002 Cr-Commit-Position: refs/heads/master@{#325201}
-
mikhail.pozdnyakov authored
This CL allows setting of blink::WebView display mode with the value obtainted from the content::WebContentsDelegate implementations (so far there is a preliminary implementation at content_shell). The display mode value is send along with ViewMsg_Resize_Params IPC message. The follow-up layout test: https://codereview.chromium.org/1066213003/ BUG=471703 Review URL: https://codereview.chromium.org/964403003 Cr-Commit-Position: refs/heads/master@{#325200}
-
jackhou authored
At the moment we add an inset on the bottom and right borders of the client area because Windows doesn't render the non-client area properly otherwise (crbug.com/376608). This is not needed during fullscreen, and causes those edges to be non-hittable (see bug below). This CL makes the inset zero during fullscreen. BUG=406612 Review URL: https://codereview.chromium.org/1079913002 Cr-Commit-Position: refs/heads/master@{#325199}
-
shuchen authored
Make IMF issue correct TextInputType/TextInputMode/TextInputFlags in OnFocus event when switching input method. BUG=471669 TEST=Verified on clapper device. Review URL: https://codereview.chromium.org/1086893002 Cr-Commit-Position: refs/heads/master@{#325198}
-
chrome://print/*deepak.m1 authored
This issue is due to usage of UserScript::ValidUserScriptSchemes() instead of UserScript::kValidUserScriptSchemes, we will add CHROMEUI scheme in valid schemes mask if extension is component extension. BUG=467230 Review URL: https://codereview.chromium.org/1025613003 Cr-Commit-Position: refs/heads/master@{#325197}
-
kelvinp authored
remoting.clientSession is currently referenced for two purposes: 1. Disconnecting a session. 2. The ClientPlugin uses it to notify the clientSession when video frames are received. For (1), this CL added a stop() method to the Activity interface. Client code at access the Activity through the Application and call stop() for disconnecting. (2) is currently dead code that is not being used. It is removed in this CL. BUG=477119 Review URL: https://codereview.chromium.org/1082383002 Cr-Commit-Position: refs/heads/master@{#325196}
-
jbauman authored
Use base::ConstRef on the reference to prevent base::Bind from copying this entire datastructure. Review URL: https://codereview.chromium.org/1080243002 Cr-Commit-Position: refs/heads/master@{#325195}
-
shuchen authored
TBR=suzhe@chromium.org BUG=286623 TEST=Verified on clapper device. Review URL: https://codereview.chromium.org/1085183002 Cr-Commit-Position: refs/heads/master@{#325194}
-
lazyboy authored
r324002 introduced a code path where we call BrowserPluginGuest::SendTextInputTypeChangedToView() during shutdown via BrowserPluginGuest::SetFocus(). This happens when guest is showing interstitial page. There are couple of ways this can happen, either when the embedder page closes or the embedder page navigates to a different page. GuestViewBase::OwnerContentsObserver detects these two cases and calls BrowserPluginGuest shutdown path. During that time if guest was showing an interstitial, then it closes the interstitial which in that case would call: content::InterstitialPageImpl::DontProceed() / content::InterstitialPageImpl::Hide() Hide() ends up calling BrowserPluginGuest::SetFocus() and we hit the NPE. BUG=477126,477132 Test=Navigate a tab chrome signin page, after changing the system clock to few years back, observe that it is shows interstitial. Either of the following reproduces the behavior: a) close the tab b) navigate the tab to some webpage, e.g. http://test.com Review URL: https://codereview.chromium.org/1089123002 Cr-Commit-Position: refs/heads/master@{#325193}
-
reveman authored
This is required for discardable memory to be available to ppapi processes. BUG=477047 Review URL: https://codereview.chromium.org/1082373002 Cr-Commit-Position: refs/heads/master@{#325192}
-
vivek.vg authored
Without the initialization, GCC throws the below error: error: ‘web_port_index’ may be used uninitialized in this function [-Werror=maybe-uninitialized] This looks like a gcc bug as we are handling both the types in the switch-case block. R=agoode@chromium.org, toyoshim@chromium.org Review URL: https://codereview.chromium.org/1086693004 Cr-Commit-Position: refs/heads/master@{#325191}
-