- 23 Mar, 2015 40 commits
-
-
reveman authored
This allows us to Join the threads when RenderThreadImpl is shutdown. BUG=468785 TEST=cc_unittests Review URL: https://codereview.chromium.org/999173004 Cr-Commit-Position: refs/heads/master@{#321836}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/bda107a..1f99128 TBR=dglazkov@chromium.org,alph@chromium.org Review URL: https://codereview.chromium.org/1025303004 Cr-Commit-Position: refs/heads/master@{#321835}
-
rdevlin.cronin authored
Adjust from using strict equality to >= and <= in order to account for the possibility of ratios and floats more safely. BUG=463905 Review URL: https://codereview.chromium.org/1025303003 Cr-Commit-Position: refs/heads/master@{#321834}
-
newt authored
We were using getDefaultSearchEngineIndex() as an index into the list of TemplateUrls returned by getLocalizedSearchEngines(), which is incorrect, but happens to work most of the time. BUG=469238 Review URL: https://codereview.chromium.org/1024213003 Cr-Commit-Position: refs/heads/master@{#321833}
-
pedrosimonetti authored
Revert of [Contextual Search] Add new assets for promo. (patchset #1 id:1 of https://codereview.chromium.org/978063002/) Reason for revert: We are going to replace multiple PNGs with a single SVG. Original issue's description: > [Contextual Search] Add new assets for promo. > > BUG=441476 > > Committed: https://crrev.com/a8e635214679c50b9010d925d083f8e54b13ba92 > Cr-Commit-Position: refs/heads/master@{#319287} TBR=donnd@chromium.org,dtrainor@chromium.org,mathp@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=441476 Review URL: https://codereview.chromium.org/1030703002 Cr-Commit-Position: refs/heads/master@{#321832}
-
spang authored
This was intended as a fix for some unusual absolute devices that report having mouse buttons (BTN_LEFT, BTN_MIDDLE, BTN_RIGHT), and aren't touchpads or tablets. They are sort of like touchscreens (user interacts directly with screen), and sort of like tablets (absolute cursor positioning), and sort of like mice (left/middle/right buttons). The fact that it wants mouse events rather than touch events makes it incompatible with the touchscreen code, though, so revert this for now. We'll have to do something else to support these "absolute mouse" devices. BUG=456999 TEST=events_unittests Review URL: https://codereview.chromium.org/1014853005 Cr-Commit-Position: refs/heads/master@{#321831}
-
knn authored
BUG=455646 Review URL: https://codereview.chromium.org/1005693005 Cr-Commit-Position: refs/heads/master@{#321830}
-
pcc authored
BUG=469377 R=thakis@chromium.org Review URL: https://codereview.chromium.org/1020363004 Cr-Commit-Position: refs/heads/master@{#321829}
-
miu authored
Revert of De-dupe copy requests for tab capture in DelegatedFrameHost. (patchset #7 id:160001 of https://codereview.chromium.org/986823002/) Reason for revert: Weird frame flickering effect in capture on some systems. https://crbug.com/469345 Original issue's description: > De-dupe copy requests for tab capture in DelegatedFrameHost. > > Tab capture requests copies/readbacks in response to every delegated > frame swap from the renderer. These are executed in a later step, when > the browser is composited. Unfortunately, the browser may not be > composited for every render frame. This means multiple copies/readbacks > may become enqueued, each of which is expensive, and will turn out to be > completely redundant as the results will be identical. This change > detects this scenario, and de-dupes by "aborting" the older frame > subscriber callback. > > BUG=464475 > > Committed: https://crrev.com/ddee0845cc298cbba6f9d8d6ff7fb9e06073f0e8 > Cr-Commit-Position: refs/heads/master@{#319998} TBR=danakj@chromium.org,ccameron@chromium.org,hubbe@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=464475 Review URL: https://codereview.chromium.org/1010803013 Cr-Commit-Position: refs/heads/master@{#321828}
-
vmpstr authored
This patch adds a combined_priority field to tracing which contains the up-to-date combined priority for the tile. I plan on removing the active/pending priorities from traces, since they typically do not provide any useful information (and are likely to be out of date). R=danakj, enne Review URL: https://codereview.chromium.org/1027563003 Cr-Commit-Position: refs/heads/master@{#321827}
-
aurimas authored
FirstRunUtil had mostly to do with Signing in (it is also used by SignInPromoDialog) so it should live under org.chromium.chrome.browser.signin. BUG=428842 Review URL: https://codereview.chromium.org/1000823002 Cr-Commit-Position: refs/heads/master@{#321826}
-
Adam Langley authored
BUG=468992 Cr-Commit-Position: refs/heads/master@{#321825}
-
thakis authored
BUG=none Review URL: https://codereview.chromium.org/1009603006 Cr-Commit-Position: refs/heads/master@{#321824}
-
mcasas authored
BUG=440843 Review URL: https://codereview.chromium.org/1015933004 Cr-Commit-Position: refs/heads/master@{#321823}
-
rdevlin.cronin authored
Add a field trial, currently disabled (i.e., 100% control group) for allowing users to report abuse on extension uninstallation. BUG=441377 Review URL: https://codereview.chromium.org/1025613006 Cr-Commit-Position: refs/heads/master@{#321822}
-
stapelberg authored
This fixes flickering when switching the X11 input focus between non-chrome windows, but having the pointer be above the chrome window (you need to use keyboard shortcuts to switch focus to trigger this). The reason for the flickering is that OnActiveWindowChanged() is called with state ACTIVE, even though the window was not activated. Before my change, the code called OnActiveWindowChanged() even for FocusIn/FocusOut events with mode==NotifyGrab, which is not intended. For details on the events, see: http://tronche.com/gui/x/xlib/events/input-focus/normal-and-grabbed.html Review URL: https://codereview.chromium.org/1027883003 Cr-Commit-Position: refs/heads/master@{#321821}
-
davidben authored
This removes the ability to pass in a custom CookieStore to a URLRequest. It's a small change to net/url_request which then balloons to everything in the project that ever makes a URLRequest. This reverts the rest of https://codereview.chromium.org/188693003 (and then does a whole lot more because URLRequest constructors were unified recently to always require passing in the fourth argument). BUG=457344 Review URL: https://codereview.chromium.org/1003953008 Cr-Commit-Position: refs/heads/master@{#321820}
-
mikecase authored
The default Robolectric testrunner has some behaviors we want to override. By default the Robolectric testrunner will download the Robolectric runtime dependencies from the Maven central reposoitory. In addition, Robolectric won't run at all if the API level in the AndroidManifest isn't officially supported by Robolectric which isn't what we want. BUG=448030 Review URL: https://codereview.chromium.org/942083003 Cr-Commit-Position: refs/heads/master@{#321819}
-
tkent authored
PagePopups used for <input type=date>, <datalist>, etc. should have same input grab behavior as <select> popup. Also, <select> popup is going to be switched to blink::WebPopupTypePage. BUG=346582 Review URL: https://codereview.chromium.org/1028893002 Cr-Commit-Position: refs/heads/master@{#321818}
-
mseaborn authored
This pulls in the following Native Client changes: fc4d498: (dpranke@chromium.org) Fix a stray reference to ${os} in build/toolchain/nacl/BUILD.gn. 5076f66: (mtrofin@chromium.org) Use the newly introduced CMake LLVM option, LLVM_INSTALL_UTILS, to install binaries such as FileCheck, as part of the install target. 97cf946: (hidehiko@chromium.org) Non-SFI mode: Implement clone() syscall wrapper. 8171867: (jvoung@chromium.org) PNaCl: Update Subzero revision in pnacl/COMPONENT_REVISIONS 9e28d08: (jfb@chromium.org) PNaCl: Update LLVM and Clang revisions in pnacl/COMPONENT_REVISIONS cf674f2: (petarj@mips.com) Do not print nan sign for results with undefined nan sign 75c402b: (shinyak@chromium.org) Check object file size before archiving. cc3597c: (hidehiko@chromium.org) Non-SFI mode: Implement {get,set}rlimit() syscall wrappers. Changes: https://chromium.googlesource.com/native_client/src/native_client/+log/cc78fa093218f9a9a5e576002e197e17da379023..cc3597c9c13978079ef85a31d78dc4bf7f18000c BUG=none TEST=browser_tests and nacl_integration CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_chromium_dbg_32_ng,linux_arm_compile,linux_nacl_sdk_build Review URL: https://codereview.chromium.org/1027283002 Cr-Commit-Position: refs/heads/master@{#321817}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/c4eeb52..bda107a TBR=dglazkov@chromium.org,alph@chromium.org Review URL: https://codereview.chromium.org/1029603003 Cr-Commit-Position: refs/heads/master@{#321816}
-
sergeyu authored
BUG=469763 Review URL: https://codereview.chromium.org/1022983003 Cr-Commit-Position: refs/heads/master@{#321815}
-
tommycli authored
BUG=467165 Review URL: https://codereview.chromium.org/1026803003 Cr-Commit-Position: refs/heads/master@{#321814}
-
tfarina authored
Since most most gn users come from gyp and that apostrophe works as a string delimiter in both gyp and python, it is pretty common that they use an apostrophe (') instead of a double one ("). So lets try to give them a more helpful error message that could save people some time the first time. BUG=469097 TEST=edit any BUILD.gn and change any " by '. regenerate the ninja files by running gn gen out-gn. See the error message. R=brettw@chromium.org Review URL: https://codereview.chromium.org/1024333002 Cr-Commit-Position: refs/heads/master@{#321813}
-
mlamouri authored
BUG=457091 Review URL: https://codereview.chromium.org/1023213002 Cr-Commit-Position: refs/heads/master@{#321812}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/dc3d968..b8a1d30 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=hcm@google.com Review URL: https://codereview.chromium.org/1019183003 Cr-Commit-Position: refs/heads/master@{#321811}
-
apacible authored
Review URL: https://codereview.chromium.org/1027893002 Cr-Commit-Position: refs/heads/master@{#321810}
-
gunsch authored
R=phajdan.jr@chromium.org BUG=468335 Review URL: https://codereview.chromium.org/1020243003 Cr-Commit-Position: refs/heads/master@{#321809}
-
mdempsky authored
Users must now write "defined(foo) && defined(foo.bar)" if they want the old semantics. No Chromium BUILD.gn files were harmed in the making of this CL. Review URL: https://codereview.chromium.org/1025153002 Cr-Commit-Position: refs/heads/master@{#321808}
-
mlerman authored
Chromium side of the implementation of tracking profile stats (number of profiles, number of signed in profiles) through the Omaha channel for Mac. Was reverted: https://codereview.chromium.org/974423002 BUG=409895 TBR=grt@chromium.org Review URL: https://codereview.chromium.org/1024533002 Cr-Commit-Position: refs/heads/master@{#321807}
-
earthdok authored
Revert of Instrumented libraries: add a target for pre-built libraries. (patchset #2 id:20001 of https://codereview.chromium.org/1017053003/) Reason for revert: Broke tree. Original issue's description: > Instrumented libraries: add a target for pre-built libraries. > > With use_prebuilt_instrumented_libraries=1 in GYP_DEFINES, binaries are now > unpacked from archive and placed into output dir. > > BUG=462636 > R=glider@chromium.org > TBR=thakis@chromium.org > NOTRY=true > > Committed: https://crrev.com/744256e2f3933feaa05c967541afac36825056fa > Cr-Commit-Position: refs/heads/master@{#321804} TBR=glider@chromium.org,thakis@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=462636 Review URL: https://codereview.chromium.org/1029103003 Cr-Commit-Position: refs/heads/master@{#321806}
-
droger authored
BUG=437508 Review URL: https://codereview.chromium.org/1022463002 Cr-Commit-Position: refs/heads/master@{#321805}
-
earthdok authored
With use_prebuilt_instrumented_libraries=1 in GYP_DEFINES, binaries are now unpacked from archive and placed into output dir. BUG=462636 R=glider@chromium.org TBR=thakis@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1017053003 Cr-Commit-Position: refs/heads/master@{#321804}
-
grt authored
This change give the SandboxedZipAnalyzer the power to extract archived binaries into a temporary file and extract features from them. BUG=462584 Review URL: https://codereview.chromium.org/999003003 Cr-Commit-Position: refs/heads/master@{#321803}
-
earthdok authored
Update a path following a recent change in directory structure. BUG=none TBR=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1018043007 Cr-Commit-Position: refs/heads/master@{#321802}
-
mdempsky authored
BUG=469593 Review URL: https://codereview.chromium.org/1030553002 Cr-Commit-Position: refs/heads/master@{#321801}
-
xdai authored
g_wallpaper_manager was never destroyed before the fix. It should explicitly be destroyed. BUG=171694 Review URL: https://codereview.chromium.org/1010443003 Cr-Commit-Position: refs/heads/master@{#321800}
-
r.kasibhatla authored
This roll picks the fixes for the unit test failues which was causing irritating "Aw Snap!" crash of unit test renderer process in the latest ToT of chromium and trace-viewer repos. BUG=None R=nduca,dsinclair,qyearsley TESTS=None Review URL: https://codereview.chromium.org/1025953002 Cr-Commit-Position: refs/heads/master@{#321799}
-
xiyuan authored
BUG=469591 Review URL: https://codereview.chromium.org/1031683002 Cr-Commit-Position: refs/heads/master@{#321798}
-
bcwhite authored
BUG=465855 Review URL: https://codereview.chromium.org/1023823002 Cr-Commit-Position: refs/heads/master@{#321797}
-