- 20 May, 2015 40 commits
-
-
Daniel Sievers authored
Disable multisampled_render_to_texture extension on Adreno. This extension is buggy in Android 5.0 on Nexus6. We'll turn it off for 43 by merging this revert, then land a more nuanced blacklist for 44. R=kbr@chromium.org BUG=490379 Review URL: https://codereview.chromium.org/1149943002 Cr-Commit-Position: refs/heads/master@{#330848}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/a240d64..a7b3901 TBR=szager@chromium.org,leviw@chromium.org,samli@chromium.org Review URL: https://codereview.chromium.org/1144343003 Cr-Commit-Position: refs/heads/master@{#330847}
-
yzshen authored
This CL fixes: - WebSocketReadQueue may discard data unexpectedly. - WebSocket{Read,Write}Queue: may stop processing queued operations. BUG=490196,490200 TEST=None Review URL: https://codereview.chromium.org/1148913002 Cr-Commit-Position: refs/heads/master@{#330846}
-
dbeam authored
This is where things get complicated. NTP4 had a most visited pane. It showed your top sites. So does the current NTP; so I'm trying to remove everything that deals with most visited tiles on NTP4 without accidentally breaking the same named thing on the current NTP. Here's what used to exist that I'm trying to remove: http://bostandjiev.com/Content/Google/chrome.jpg Here's what currently exists that I'm trying not to break: http://cdn.ghacks.net/wp-content/uploads/2013/04/chrome-new-tab-page.jpg BUG=329637 Review URL: https://codereview.chromium.org/1129903008 Cr-Commit-Position: refs/heads/master@{#330845}
-
chrome://extensionsestade authored
BUG=422305 Review URL: https://codereview.chromium.org/1150803002 Cr-Commit-Position: refs/heads/master@{#330844}
-
mpearson authored
I audited the code in the process of removing this. It seems safe to me. Note that HistoryURL provider isn't the only provider to create a match of type URL_WHAT_YOU_TYPED--ZeroSuggest does too. I thought about creating a helper function that tests for URL_WHAT_YOU_TYPED from the HistoryURL provider and using that where is_history_what_you_typed_match is currently used. Doing so would be exactly equivalent to the current logic. However, I looked at all the places is_history_what_you_typed_match is used, and I see no harm in doing the simpler test (i.e., check only for URL_WHAT_YOU_TYPED, not URL_WHAT_YOU_TYPED from HistoryURL provider). TBR=estade for trivial change to omnibox.js BUG=471360 Review URL: https://codereview.chromium.org/1129733006 Cr-Commit-Position: refs/heads/master@{#330843}
-
pvalenzuela authored
This CL dramatically improves the ability to verify local Sync data in Java Android tests. This is done by plumbing through the ProfileSyncService's GetAllNodes method through JNI. This new util will also allow for the server-side modification and deletion of Sync entities in a future CL. An older version of local data verification (relying only on entity counts) has been removed. BUG=365774 Review URL: https://codereview.chromium.org/1127233008 Cr-Commit-Position: refs/heads/master@{#330842}
-
donnd authored
Adds several new histograms for Contextual Search to track: The total number of taps before ever opening the promo panel, the number of times the promo panel was opened, the number of taps since any panel was opened, and information about the search term resolution (protocol, and single/multi-word). There's a downstream CL dependent on this change: https://chrome-internal-review.googlesource.com/#/c/216388/ BUG=477827 Review URL: https://codereview.chromium.org/1131653005 Cr-Commit-Position: refs/heads/master@{#330841}
-
eroman authored
Also adds DISALLOW_COPY() to Request. BUG=475153 Review URL: https://codereview.chromium.org/1131173005 Cr-Commit-Position: refs/heads/master@{#330840}
-
brettw authored
The header checker will now automatically accept any headers not known in the current toolchain. The previous code would do this but required it to not be present in any toolchain in the entire build. See the long comment added in header_checker.cc for details. Adds a dependency fix for the Android build in base. BUG= Review URL: https://codereview.chromium.org/1142423004 Cr-Commit-Position: refs/heads/master@{#330839}
-
sammc authored
BUG=489751 Review URL: https://codereview.chromium.org/1146813003 Cr-Commit-Position: refs/heads/master@{#330838}
-
hendrikw authored
glGetIntegerv with GL_GPU_DISJOINT_EXT causes GL_INVALID_ENUM error which leaked into the FeatureInfo's Initialize. BUG=462553 Review URL: https://codereview.chromium.org/1150463003 Cr-Commit-Position: refs/heads/master@{#330837}
-
jaekyun authored
In document mode, the current task could be removed after a market Intent is started. So, we should start it in a new task. BUG=487295 Review URL: https://codereview.chromium.org/1149863003 Cr-Commit-Position: refs/heads/master@{#330836}
-
jdufault authored
See cr/94026893 for context. BUG=489929 Review URL: https://codereview.chromium.org/1148713004 Cr-Commit-Position: refs/heads/master@{#330835}
-
rsleevi authored
The HSTS/HPKP preload set is pre-normalized at construction time. Since the queries come from the GURL, not from the DNS layer, we need to normalize the hostname before scanning for preloads. This used to be handled by CanonicalizeHost(), which used the same mechanism as the resolver, but the storage of the preloads has changed to be more efficient, and thus no longer uses the resolver-normalized form. BUG=461481 R=davidben@chromium.org Review URL: https://codereview.chromium.org/1149753002 Cr-Commit-Position: refs/heads/master@{#330834}
-
benwells authored
For example, if the certificate is expired. BUG=442930 Review URL: https://codereview.chromium.org/1148743002 Cr-Commit-Position: refs/heads/master@{#330833}
-
sky authored
Revert of Changes caching logic of mojo java apps (patchset #5 id:80001 of https://codereview.chromium.org/1149813002/) Reason for revert: Broke windows build. Original issue's description: > Changes caching logic of mojo java apps > > Previously we would extract all necessary files every time we ran the > app. This is obviously unnecessary for any bundled apps. Now we > extract only as necessary. > > R=ben@chromium.org, jcivelli@chromium.org > BUG=none > TEST=none > > Committed: https://crrev.com/128f7a0181634a89a35f681baab1d086d100e377 > Cr-Commit-Position: refs/heads/master@{#330824} TBR=ben@chromium.org,jcivelli@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=none Review URL: https://codereview.chromium.org/1147203002 Cr-Commit-Position: refs/heads/master@{#330832}
-
rdevlin.cronin authored
When an extension is force-installed by policy and cannot be removed, show the enterprise policy icon in the context menu, and change the string from "Remove frome Chrome..." to be "Installed by your administrator". BUG=486228 Review URL: https://codereview.chromium.org/1140763003 Cr-Commit-Position: refs/heads/master@{#330831}
-
chrome://extensionsestade authored
BUG=429153 Review URL: https://codereview.chromium.org/1126083005 Cr-Commit-Position: refs/heads/master@{#330830}
-
jamiewalch authored
Due to crbug.com/489468, detection of re-written key combinations (e.g. Search+Backspace->Delete) were being mis-treated as modifier key combinations (i.e. Search+Backspace->Search+Delete). Since the spurious mouse event causing this has the same x and y coordinates as the previous mouse event, it can be filtered to suppress the unwanted keyboard event. BUG=484329 Review URL: https://codereview.chromium.org/1143943002 Cr-Commit-Position: refs/heads/master@{#330829}
-
agl authored
Summary of changes available at: https://boringssl.googlesource.com/boringssl/+log/96600327..a7997f12 This pulls in the 1024-bit minimum DH group size restriction. BUG=490240 Review URL: https://codereview.chromium.org/1144363002 Cr-Commit-Position: refs/heads/master@{#330828}
-
enne authored
R=ajuma@chromium.org Review URL: https://codereview.chromium.org/1149843004 Cr-Commit-Position: refs/heads/master@{#330827}
-
jam authored
BUG=487491 TBR=miu@chromium.org Review URL: https://codereview.chromium.org/1146933004 Cr-Commit-Position: refs/heads/master@{#330826}
-
mmenke authored
This is more robust against re-entrantly run MessageLoops. BUG=none Review URL: https://codereview.chromium.org/1142843002 Cr-Commit-Position: refs/heads/master@{#330825}
-
sky authored
Previously we would extract all necessary files every time we ran the app. This is obviously unnecessary for any bundled apps. Now we extract only as necessary. R=ben@chromium.org, jcivelli@chromium.org BUG=none TEST=none Review URL: https://codereview.chromium.org/1149813002 Cr-Commit-Position: refs/heads/master@{#330824}
-
estade authored
BUG=none Review URL: https://codereview.chromium.org/1124223012 Cr-Commit-Position: refs/heads/master@{#330823}
-
oysteine authored
Companion CL: https://codereview.chromium.org/1067233002/ R=nduca,davidben,jam BUG=466769 Review URL: https://codereview.chromium.org/1115343002 Cr-Commit-Position: refs/heads/master@{#330822}
-
smut authored
BUG=452726 Review URL: https://codereview.chromium.org/1146243003 Cr-Commit-Position: refs/heads/master@{#330821}
-
vmpstr authored
This patch cleans up some more recycled twin information. In particular, it removes it from the picture layer tiling set. This makes it possible to remove one of the functions that gets the recycled twin from the layer. R=enne, danakj Review URL: https://codereview.chromium.org/1149843002 Cr-Commit-Position: refs/heads/master@{#330820}
-
pvalenzuela authored
Test targets are defined in BUILD.gn, so it would be convenient to be able to review CLs here. BUG=NONE Review URL: https://codereview.chromium.org/1148113003 Cr-Commit-Position: refs/heads/master@{#330819}
-
ajuma authored
This fixes two places where we directly access property tree indices rather than using their accessors. BUG=489725 Review URL: https://codereview.chromium.org/1144343002 Cr-Commit-Position: refs/heads/master@{#330818}
-
pkasting authored
Some of the changes below may have a functional effect, but I don't _think_ they will, if they do it should be minor, and I don't know another way of finding out than trying to make this change and seeing what happens. (Besides simplification, this change is also intended to unblock https://codereview.chromium.org/1139823006/ , which doesn't want to affect infobar behavior but without this change might do so.) * Moved the check for "!details.did_replace_entry" from ConfirmInfoBarDelegate up to the base class. Very few people subclass the base class anyway, and for those who do, there's no obvious reason not to do this. I actually suggested doing this in a review several years ago but it never happened. * Removed InfoBarDelegate::ShouldExpireInternal(), which didn't seem to be doing much useful. I think the unique ID check was basically doing the same thing as the "is_navigation_to_different_page" bit that was already checked in ShouldExpire() (which didn't exist when the unique IDs were added long ago). So if we got to ShouldExpireInternal() at all, that would be true regardless, and thus that helper would always return true. (Incidentally, reloads _are_ treated as "navigations to a different page", so we still dismiss infobars by default on reload. If this wasn't true we'd have already been broken anyway, since ShouldExpire() would have early-returned false.) * Removed ProtectedMediaIdentifierInfoBarDelegate::ShouldExpireInternal(). I discussed this with kkimlabs@, the original author, and neither of us can understand why it was necessary to begin with. We both think this should be removed. * Removed the wonky TranslateInfoBarDelegate::ShouldExpire(). Long ago, this used to check a bit called "is_auto", because it was trying to allow the infobar to be dismissed even for automatic navigations, whereas other infobars wanted to only be dismissed for user-driven ones. However, the "is_auto" bit was later removed, and the replacement code didn't really work the same way, and besides this, the conditional didn't really make sense, since "!details.is_main_frame" implies "!details.is_navigation_to_different_page". So we basically had a function that would call InfoBarDelegate::ShouldExpireInternal() for all main-frame navigations. But since, as I said above, I think the unique ID check there was functionally the same as checking for a "navigation to a different page"... I think all this ended up just doing the same thing as the original base function. And I couldn't check because the translate infobar no longer exists for views anyway. So whatever. * Removed copy-and-pasted code that wasn't needed. BUG=none TEST=none Review URL: https://codereview.chromium.org/1142153002 Cr-Commit-Position: refs/heads/master@{#330817}
-
jbauman authored
With 1 win32 timer we can only get a callback every 10ms, and since the callback only processes one message, that means the queue could keep growing if delayed tasks are posted faster than that rate, even if they're processed very quickly. To prevent that, schedule a kMsgHaveWork if there's 0ms until the next delayed task should run, and run a delayed task in the kMsgHaveWork handler. BUG=454333 TEST=chrome resizes smoothly Review URL: https://codereview.chromium.org/918473002 Cr-Commit-Position: refs/heads/master@{#330816}
-
juncai authored
This patch removes lazy_background_task_queue accessor from ExtensionSystem. It can be its own browser context keyed service. It can be built by its new factory. Review URL: https://codereview.chromium.org/1129063011 Cr-Commit-Position: refs/heads/master@{#330815}
-
rch authored
Review URL: https://codereview.chromium.org/1141453005 Cr-Commit-Position: refs/heads/master@{#330814}
-
oshima authored
Add option in display settings page to switch the mode BUG=489809 TEST=manual + DisplayManagerTest.UnifiedDesktopBasic Review URL: https://codereview.chromium.org/1126933004 Cr-Commit-Position: refs/heads/master@{#330813}
-
mpearson authored
I noticed that HistoryQuick provider's also-do-HUP-like-scoring mode did some score-capping to prevent a non-inlineable match from showing first. This is no longer necessary now that we have reorder mode (a.k.a. the allowed_to_be_default_match field). BUG= Review URL: https://codereview.chromium.org/1144273003 Cr-Commit-Position: refs/heads/master@{#330812}
-
boliu authored
Android emulators miss many EGL extensions required for webview hardware accelerated rendering, so fallback to a slow software mode when running in emulator. BUG=490354 Review URL: https://codereview.chromium.org/1145273003 Cr-Commit-Position: refs/heads/master@{#330811}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/6bd0043..a240d64 TBR=szager@chromium.org,leviw@chromium.org,samli@chromium.org Review URL: https://codereview.chromium.org/1149823002 Cr-Commit-Position: refs/heads/master@{#330810}
-
tedchoc authored
This will handle destroying the owned tab models, which will in turn destroy the owned tabs. BUG=473594 Review URL: https://codereview.chromium.org/1147153002 Cr-Commit-Position: refs/heads/master@{#330809}
-