- 27 Jul, 2016 40 commits
-
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/b623b2bff836..757ba0d236e7 $ git log b623b2bff..757ba0d23 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2190743002 Cr-Commit-Position: refs/heads/master@{#408258}
-
allada authored
Added a context menu option which you can get all requests seperated by a semicolon and new lines for users that want to get all or most of the requests as curl commands from devtools BUG=466923 Review-Url: https://codereview.chromium.org/2177383003 Cr-Commit-Position: refs/heads/master@{#408257}
-
allada authored
Fixes closure compiler error caused by the following patches landing at once: https://codereview.chromium.org/2058323002 https://codereview.chromium.org/2181123002 BUG=none Review-Url: https://codereview.chromium.org/2189733002 Cr-Commit-Position: refs/heads/master@{#408256}
-
estark authored
IsUserClockInThePast/Future no longer exist and have been replaced by GetClockState(). BUG= Review-Url: https://codereview.chromium.org/2184263002 Cr-Commit-Position: refs/heads/master@{#408255}
-
jbauman authored
We've decided to use Microsoft's MFT for now, so remove support for Intel's MFT. BUG=616318 Review-Url: https://codereview.chromium.org/2178203002 Cr-Commit-Position: refs/heads/master@{#408254}
-
cco3 authored
This change initiates a background scan through Nearby on startup so that the Physical Web feature can surface URLs. BUG=623638 Review-Url: https://codereview.chromium.org/2176373007 Cr-Commit-Position: refs/heads/master@{#408253}
-
sky authored
TBR=ben@chromium.org R=ben@chromium.org BUG=none TEST=none Review-Url: https://codereview.chromium.org/2182633011 Cr-Commit-Position: refs/heads/master@{#408252}
-
wangxianzhu authored
- Clear just created flag if the client is used in any display item or chunk. Don't set a chunk client to validly cached status because it doesn't have any validly cached display item (otherwise it should have been marked validly cached in the m_newADisplayItemList loop. - Invalidate the client if it has any display items skipped cache. Review-Url: https://codereview.chromium.org/2185933003 Cr-Commit-Position: refs/heads/master@{#408251}
-
eugenebut authored
1.) Delaying queues flushing is unnecessary because reentrace can't happen with asynchronous JS API. 2.) Check for message object presence is unnecessary because it is injected together with __crWeb object. BUG=402682,628832 Review-Url: https://codereview.chromium.org/2192503002 Cr-Commit-Position: refs/heads/master@{#408250}
-
fs authored
Review-Url: https://codereview.chromium.org/2175123002 Cr-Commit-Position: refs/heads/master@{#408249}
-
juncai authored
This is part 6 of matching WebBluetooth chooser views to mocks. This CL adds test code for spinner, status, and rescan button that was added in the previous patch. BUG=583452 Review-Url: https://codereview.chromium.org/2179193002 Cr-Commit-Position: refs/heads/master@{#408248}
-
juncai authored
This is part 5 of matching WebBluetooth chooser views to mocks. This CL adds test code for spinner, status text and rescan button that was added in previous patches. BUG=583452 Review-Url: https://codereview.chromium.org/2171103002 Cr-Commit-Position: refs/heads/master@{#408247}
-
kmackay authored
When EmbeddedApplicationRunner is destroyed, if the application instance still has any bound connections, those connections must be destroyed on the application task runner. Otherwise there is a DCHECK failure when the binding is destroyed. BUG= Review-Url: https://codereview.chromium.org/2188503003 Cr-Commit-Position: refs/heads/master@{#408246}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/2493943b..ff79f437 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2187963002 Cr-Commit-Position: refs/heads/master@{#408245}
-
mdjones authored
If the RenderFrameHost is swapped, it usually means the old host will be destroyed. Manual cleanup of the mojo service should not be necessary since the attached interfaces will be removed during destruction. BUG=624260 Review-Url: https://codereview.chromium.org/2185733002 Cr-Commit-Position: refs/heads/master@{#408244}
-
yuweih authored
This CL refactors the CursorShapeStub being used by JniDisplayHandler into a helper class that forwards cursor shape info from one thread to another. It can be used by JniGlDisplayHandler to update the cursor shape for the remoting Android OpenGL host renderer implementation. BUG=385924 Review-Url: https://codereview.chromium.org/2187723002 Cr-Commit-Position: refs/heads/master@{#408243}
-
weiran authored
There are several scenarios that user want to open an mhtml file of offline page: from third party apps when user receive the file as attachment, from Android’s download home, and from file manager apps. The third party apps that offline page sharing feature intended to make use of are Gmail, ShareIt, Xender, Beam and Drive. Each of these schemes differs in the intent sent out when trying to open the mhtml file. This CL made changes on the intent filters so that Chrome would be known to the system as a handler of mhtml VIEW intent in different schemes. First filter only declares mimeType, enables intent that keeps the mimeType "multipart/related" (Beam,Drive,Download, File Manager). Second filter declares the pathPatter, enables intent that lost the mimeType but keeps the ".mhtml" postfix (Xender). The last filter added [mimeType=”*/*”], enables ShareIt open the file. Deleting either of the intent filter will cause at least one scheme not working properly. Drive and Download use content uri, which is not considered as local url. In MHTMLArchive::create, mhtml pages from non-local URLs are blocked for security reasons. As a result, content won't show properly. Related discussion can be seen in bug 630753. BUG=622139 Review-Url: https://codereview.chromium.org/2098263002 Cr-Commit-Position: refs/heads/master@{#408242}
-
hzl authored
BUG=605572 Review-Url: https://codereview.chromium.org/2183053004 Cr-Commit-Position: refs/heads/master@{#408241}
-
shenghuazhang authored
Add device_is_tablet() in DisableIf.Build Add device() to check format in DisableIfSkipCheck.java BUG=620138 Review-Url: https://codereview.chromium.org/2160013002 Cr-Commit-Position: refs/heads/master@{#408240}
-
ekaramad authored
When there are no OOPIFs in a page, if we switch focus from one <input> into another (i.e., through a mouse click), the TextInputState will be first set to NONE and then back to TEXT. This however does not always happen when there are OOPIFs since the two IPCs might arrive from different RenderWidgets and the order of arrival is not deterministic (e.g., the IPC to set to TEXT could arrive sooner). Although TextInputManager tracks the state and active widget correctly (regardless of what order the IPCs arrive from the RenderWidgets), it still does not mimic the exact same behavior as in the single RenderWidget case. In Aura platforms, without setting the TextInputState to none before changing the active widget, the IME behavior might go wrong and InputMethod behave out of sync with the actual TextInputState. The reason is that the InputMethod would believe that the TextInputClient is the same but the IME session has ended. This CL will try to simulate the same behavior for all scenarios by injecting a TextInputState of none in between an active widget change. BUG=626171,578168,602723 Review-Url: https://codereview.chromium.org/2171443003 Cr-Commit-Position: refs/heads/master@{#408239}
-
mcasas authored
This CL: - Adds a thread checker to VideoCaptureDeviceAndroid, - reduces the scope of an AutoLock protecting |client_| - adds AutoLock in (other) accesses to |client_| and tests for it before using it. - cleans up (removes) superfluous DVLOG()s - reorders 1 member variable Review-Url: https://codereview.chromium.org/2186043002 Cr-Commit-Position: refs/heads/master@{#408238}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/89da69303550..95860ad4004e $ git log 89da69303..95860ad40 --date=short --no-merges --format='%ad %ae %s' 2016-07-27 halcanary DEPS: sfntly 468cad5 → b18b09b 2016-07-27 robertphillips Rename GrContext's newDrawContext & drawContext to makeDrawContext 2016-07-27 bsalomon Make the yasm copy target be type 'none' rather than type 'executable' GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2182873005 2016-07-27 caryclark require semi at the end of SkASSERT and friends 2016-07-27 mtklein GN: fixes for Mac 2016-07-27 halcanary SkPDF: SkPDFStream takes a unique_ptr 2016-07-27 benjaminwagner Rename textual includes as *.inc. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=tomhudson@google.com Review-Url: https://codereview.chromium.org/2187073003 Cr-Commit-Position: refs/heads/master@{#408237}
-
jamescook authored
This also simplifies the behavior of ShelfWindowWatcher: * It adds an icon to the shelf if a window with ShelfItemDetails is created in the default window container. * It leaves the icon there until the window is closed, even if the window is reparented during a drag or dock operation. This eliminates one set of window observers. TODO: Change ownership to WmShell and move to //ash/common BUG=629257 TEST=added to ash_unittests Review-Url: https://codereview.chromium.org/2192553002 Cr-Commit-Position: refs/heads/master@{#408236}
-
lukasza authored
This CL: - Added checks to ResourceDispatcherHostImpl::BeginSaveFile to verify if the renderer process is authorized to access a given resource. - Removed separate code path for file: URIs that used to be implemented in SaveFileManager::SaveLocalFile. Avoiding a separate code path helps consolidate all authorization checks in one place. BUG=616429 Review-Url: https://codereview.chromium.org/2075273002 Cr-Commit-Position: refs/heads/master@{#408235}
-
xlai authored
BUG=None Review-Url: https://codereview.chromium.org/2189733003 Cr-Commit-Position: refs/heads/master@{#408234}
-
mostynb authored
This fixes a gcc compilation error in os_exchange_data_provider_aurax11.cc: error: cannot convert 'ret' from type 'std::unique_ptr<ui::OSExchangeDataProviderAuraX11>' to type 'std::unique_ptr<ui::OSExchangeDataProviderAuraX11>&&' Tested with gcc 4.8.4. Followup to https://codereview.chromium.org/2179813003 BUG=614037 Review-Url: https://codereview.chromium.org/2192533002 Cr-Commit-Position: refs/heads/master@{#408233}
-
eugenebut authored
Make windowID script return boolean result to indicate if retry is necessary instead of retrying on exception. BUG=628832 Review-Url: https://codereview.chromium.org/2189553003 Cr-Commit-Position: refs/heads/master@{#408232}
-
Rebaseline Bot authored
https://chromium.googlesource.com/chromium/src/+/e8a107c96 BUG=355305 TBR=robliao@chromium.org Review URL: https://codereview.chromium.org/2189453003 . Cr-Commit-Position: refs/heads/master@{#408231}
-
penghuang authored
BUG=630893 Review-Url: https://codereview.chromium.org/2187103002 Cr-Commit-Position: refs/heads/master@{#408230}
-
bhallam authored
The current logic to add accessibility description for tabs was not very read-able and did not match existing code style of the project. This change cleans up the complex if-else conditions to a much simpler ternary assignment format. BUG=0 TEST=Re-run junit tests for StripLayoutHelperTest suite. Review-Url: https://codereview.chromium.org/2179043002 Cr-Commit-Position: refs/heads/master@{#408229}
-
sky authored
BUG=612331 TEST=none R=msw@chromium.org Review-Url: https://codereview.chromium.org/2182443005 Cr-Commit-Position: refs/heads/master@{#408228}
-
estade authored
BUG=629217 Review-Url: https://codereview.chromium.org/2191473004 Cr-Commit-Position: refs/heads/master@{#408227}
-
panicker authored
Switch to SetAccessor, this adds a Getter where the Usage counter will be added subsequently. A side effect of SetAccessor is that it subtly changes the behavior: previously loadtimes data fields were mutable and persisted modifications that updated the value programmatically (from javascript). With this change, such modifications will not be persisted. We think this is fine -- as we cannot think of scenarios where it makes sense to modify the values returned by chrome.loadtimes. Moreover this is a necessary step to get usage counts and move the deprecation further. BUG=621512 Review-Url: https://codereview.chromium.org/2149933003 Cr-Commit-Position: refs/heads/master@{#408226}
-
alph authored
Review-Url: https://codereview.chromium.org/2184683003 Cr-Commit-Position: refs/heads/master@{#408225}
-
jamescook authored
* Convert from Shelf to WmShelf * Move to //ash/common/shelf BUG=632071 TEST=ash_unittests Review-Url: https://codereview.chromium.org/2187953002 Cr-Commit-Position: refs/heads/master@{#408224}
-
jrummell authored
BUG=418195 TEST=tested "Clear Browsing Data" dialogs manually CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2180383002 Cr-Commit-Position: refs/heads/master@{#408223}
-
petewil authored
BUG=610521 Review-Url: https://codereview.chromium.org/2189443004 Cr-Commit-Position: refs/heads/master@{#408222}
-
rjshade authored
Fixes toy server crash described here: https://groups.google.com/a/chromium.org/forum/#!topic/proto-quic/ziwUgZbV2Wk BUG= Review-Url: https://codereview.chromium.org/2180003004 Cr-Commit-Position: refs/heads/master@{#408221}
-
Rebaseline Bot authored
https://chromium.googlesource.com/chromium/src/+/a9a9eebea BUG=632000 TBR=xidachen@chromium.org Review URL: https://codereview.chromium.org/2185143002 . Cr-Commit-Position: refs/heads/master@{#408220}
-
sky authored
This is needed for mash as we asynchronously set the shelf, which is not expected. The async creation is temporary while we support sysui. Once sysui goes away this code shouldn't be needed. BUG=632099 TEST=none R=jamescook@chromium.org Review-Url: https://codereview.chromium.org/2184223002 Cr-Commit-Position: refs/heads/master@{#408219}
-