- 12 Dec, 2014 10 commits
-
-
rvargas authored
The new methods are meant to replace similar functions from kill.h BUG=417532 Review URL: https://codereview.chromium.org/791503002 Cr-Commit-Position: refs/heads/master@{#308009}
-
avi authored
BUG=438474 TEST=as in bug; no crash TBR=thestig@chromium.org,atwilson@chromium.org Review URL: https://codereview.chromium.org/790423002 Cr-Commit-Position: refs/heads/master@{#308008}
-
sagarmittal authored
R=cmumford@chromium.org Review URL: https://codereview.chromium.org/783393002 Cr-Commit-Position: refs/heads/master@{#308007}
-
xiyuan authored
BUG=441046 Review URL: https://codereview.chromium.org/799443002 Cr-Commit-Position: refs/heads/master@{#308006}
-
erikchen authored
The original CL used instance variables in a class extension and automatic generation of ivars for synthesized properties, features only available on 64-bit builds. The Mac Memory bots are still compiling Chromium in 32-bits. This reland removes the usage of those features. > This CL adds the class HandoffManager, which is responsible for interfacing > with Apple's Handoff APIs. It takes a GURL, and exposes that GURL to Handoff. > > This CL adds the class ActiveWebContentsObserver, which is responsible for > listening to changes to the active browser, the active tab, and the visible > URL. It notifies its delegate when any of this state might have changed. > > AppControllerMac is the delegate of ActiveWebContentsObserver, as well as the > owner of the HandoffManager. When it receives a delegate callback, it passes an > updated GURL to the HandoffManager. There is some minimal logic in > AppControllerMac that prevents URLs from incognito windows from being passed to > the HandoffManager. > > BUG=431051, 438823 > Committed: https://crrev.com/708abc5b0abb5e0916d779bf6d1342fd472a2aa1 > Cr-Commit-Position: refs/heads/master@{#307846} BUG=431051, 438823 TBR=sky, erikwright, mmenke, avi Review URL: https://codereview.chromium.org/794853004 Cr-Commit-Position: refs/heads/master@{#308005}
-
zmo authored
glGenTransformFeedbacks glDeleteTransformFeedbacks glIsTransformFeedback glBindTransformFeedback glBeginTransformFeedback glEndTransformFeedback glPauseTransformFeedback glResumeTransformFeedback The missing ones are: glTransformFeedbackVaryings glGetTransformFeedbackVarying Also this CL fixed a bug that's introduced in a previous CL for glIs* handling. Basically the client ID needs to be mapped to the service ID before passing down to the driver. The test is generalized to mask this bug, so this CL fixes both the code and the test behavior. BUG=429051 TEST=gpu_unittests R=bajones@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/795243002 Cr-Commit-Position: refs/heads/master@{#308004}
-
pkotwicz authored
The return value of DesktopNativeCursorManager::GetInitializedCursor() is no longer valid after DesktopNativeCursorManager::SetDisplay() is called. This CL ensures that the return value of DesktopNativeCursorManager::GetInitializedCursor() is not cached. BUG=440534 TEST=Manual, see bug Review URL: https://codereview.chromium.org/751063008 Cr-Commit-Position: refs/heads/master@{#308003}
-
prasadv authored
BUG= NOTRY=true Review URL: https://codereview.chromium.org/792183003 Cr-Commit-Position: refs/heads/master@{#308002}
-
vadimt authored
This is a follow-up for an internal discussion about possible jank, and more generally, performance issues that potentially are not tracked by about://profiler and UMA profiler data. This CL adds instrumentation that adds tracking for all WM_ message handlers. It's enabled only in Canary, and on other channels we won't track WM_ messages. If we find it valuable and safe, we can enable this instrumentation on other channels too. BUG=440919 Review URL: https://codereview.chromium.org/793893002 Cr-Commit-Position: refs/heads/master@{#308001}
-
jonross authored
Add a new background to TrayPopupHeaderButton which is used for both mouse and touch feedback. Mouse hover, and tap down, events will trigger the background. Completing a click or tap, or exiting the button, will remove the feedback. The size of TrayPopupHeadButton has been updated according to the new spec in issue 402515. TEST=TrayDetailsViewTest.TrayPopupHeaderButtonTouchFeedback, TrayDetailsViewTest.TrayPopupHeaderButtonTouchFeedbackCancellation, TrayDetailsViewTest.TrayPopupHeaderButtonMouseHoverFeedback BUG=402515 Review URL: https://codereview.chromium.org/800513002 Cr-Commit-Position: refs/heads/master@{#308000}
-
- 11 Dec, 2014 30 commits
-
-
rvargas authored
BUG=417532 Review URL: https://codereview.chromium.org/793453002 Cr-Commit-Position: refs/heads/master@{#307999}
-
lanwei authored
We added the horizontal_axis value to the SendMouseWheelEvent method, so that the mousewheel event now can scroll vertically and horizontally. BUG=435154 Review URL: https://codereview.chromium.org/792333004 Cr-Commit-Position: refs/heads/master@{#307998}
-
brucedawson authored
BUG=436603 Review URL: https://codereview.chromium.org/802503003 Cr-Commit-Position: refs/heads/master@{#307997}
-
tapted authored
It currently uses ChromeViewsDelegate. This is a problem for MacViews, because ChromeViewsDelegate only provides an out-of-process compositor, which isn't available in tests using ViewEventTestBase. It's not a problem for Aura, because Aura platforms tend to get their ContextFactory form aura::Env instead of ViewsDelegate BUG=403679 Review URL: https://codereview.chromium.org/785233008 Cr-Commit-Position: refs/heads/master@{#307996}
-
dmurph authored
BUG=439529 Review URL: https://codereview.chromium.org/797463002 Cr-Commit-Position: refs/heads/master@{#307995}
-
kpschoedel authored
Moves the native-event test from RenderWidgetHostViewAura::OnKeyEvent() down to MakeWebKeyboardEvent() so that nativeKeyCode is correctly set. Symptoms included incorrect characters in Chromoting, and Search key not working in non-web windows. BUG=425156 BUG=440184 Review URL: https://codereview.chromium.org/789153004 Cr-Commit-Position: refs/heads/master@{#307994}
-
rnephew authored
Requests is already mirrored on chromium. It has an Appache 2.0 license. It is required for the appurify python api found in thirdparty to work. BUG=439624 Review URL: https://codereview.chromium.org/782083002 Cr-Commit-Position: refs/heads/master@{#307993}
-
japhet authored
The flag can be removed once the remaining references in blink are removed. BUG=426520 Review URL: https://codereview.chromium.org/707173003 Cr-Commit-Position: refs/heads/master@{#307992}
-
scottmg authored
This was a workaround for VS's before 2013 that lack va_copy, and is no longer required. The unittest is removed as it seems unnecessary to test the standard library's implementation of va_copy. R=thakis@chromium.org TBR=cpu@chromium.org Review URL: https://codereview.chromium.org/802533002 Cr-Commit-Position: refs/heads/master@{#307991}
-
yusufo authored
onBackgroundColor is currently coming through ContentViewCore. The downstream counterpart to this will remove the downstream notification. BUG=344589 Review URL: https://codereview.chromium.org/791393003 Cr-Commit-Position: refs/heads/master@{#307990}
-
sullivan authored
BUG=353260 Review URL: https://codereview.chromium.org/801503002 Cr-Commit-Position: refs/heads/master@{#307989}
-
brucedawson authored
Warning was: src\sandbox\win\src\policy_engine_processor.cc(81) : warning C6313: Incorrect operator: zero-valued flag cannot be tested with bitwise-and. This change should have no effect because the kStopOnErrors policy is never requested. BUG=427616 Review URL: https://codereview.chromium.org/789543004 Cr-Commit-Position: refs/heads/master@{#307988}
-
Daniel Sievers authored
BUG=396568 TBR=feng@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/797783002 Cr-Commit-Position: refs/heads/master@{#307987}
-
tdanderson authored
The current implementation of GestureRecognizerImpl::GetTargetForGestureEvent() will insert a mapping between a touch ID and a NULL GestureConsumer to |touch_id_target_for_gestures_| if queried with a touch ID that does not already exist in the map. Use .at() instead of [] to avoid this possibility. BUG=403346 TEST=none Review URL: https://codereview.chromium.org/466323004 Cr-Commit-Position: refs/heads/master@{#307986}
-
John Abd-El-Malek authored
Causes views_unittests EventMonitorTest.ShouldNotReceiveEventsFromOtherWindow to fail, see http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Tests%20%28dbg%29%281%29/builds/35121/steps/views_unittests/logs/stdio This reverts commit e393fdb1. Cr-Commit-Position: refs/heads/master@{#307985}
-
Ken Rockot authored
These people are not really owners. Bye. BUG=None TBR=reillyg@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/797633003 Cr-Commit-Position: refs/heads/master@{#307984}
-
mustaq authored
This is the second platform-dependent CL on our way to support pointer, any-pointer, hover and any-hover media queries. http://dev.w3.org/csswg/mediaqueries-4/#mf-interaction This CL includes changes for windows, aurax11, linux and ozone. This follows the platform-independent patch (crrev.com/685153003) and the Android-specific patch (crrev.com/696713002). BUG=136119 Review URL: https://codereview.chromium.org/781753005 Cr-Commit-Position: refs/heads/master@{#307983}
-
bengr authored
Include tests that verify the interaction of the data reduction proxy's bypass mechanism and a real server. BUG=438866 Review URL: https://codereview.chromium.org/749793002 Cr-Commit-Position: refs/heads/master@{#307982}
-
jeremyim authored
- Save off various events in DataReductionProxyEventStore for later use (last bypass event, data reduction proxy configuration, canary request state) - Plumb DataReductionProxyEventStore through ChromeNetworkDelegate to net_internals_ui.cc for consumption by bandwidth_view.js/html - Update bandwidth_view.* for rendering the DataReductionProxyEventStore information BUG=346356 Review URL: https://codereview.chromium.org/775773002 Cr-Commit-Position: refs/heads/master@{#307981}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/b393412..4a1d377 TBR=rtoy@chromium.org,lushnikov@chromium.org,vsevik@chromium.org Review URL: https://codereview.chromium.org/797743002 Cr-Commit-Position: refs/heads/master@{#307980}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/798693002 Cr-Commit-Position: refs/heads/master@{#307979}
-
rvargas authored
BUG=417532 Review URL: https://codereview.chromium.org/790003002 Cr-Commit-Position: refs/heads/master@{#307978}
-
estade authored
depends on https://codereview.chromium.org/756333003/ BUG=437116 Review URL: https://codereview.chromium.org/773653002 Cr-Commit-Position: refs/heads/master@{#307977}
-
cmumford authored
This leveldb rev is after 1.18, but is not yet an official leveldb release. Aside from the manifest/log reuse change, all other leveldb changes are minor: * 251ebf5 LevelDB now attempts to reuse the preceding MANIFEST and log file when re-opened. * 77948e7 Add benchmark that measures cost of repeatedly opening the database. * 34ad72e Move header guard below copyright banner. * a75d435 Clean up layering of storage/leveldb/... * b234f65 Added a new fault injection test. * c4c38f9 Add arm64 support to leveldb. * cea9b10 Fixed incorrect comment wording for Iterator::Seek. * c00c569 Deleted old README file. BUG=402980,395799 Review URL: https://codereview.chromium.org/793423002 Cr-Commit-Position: refs/heads/master@{#307976}
-
bnc authored
Enable HTTP/2 by default on tip of tree. This is a requirement for launch on Stable. BUG=401166 Review URL: https://codereview.chromium.org/798613002 Cr-Commit-Position: refs/heads/master@{#307975}
-
mkosiba authored
Replace TraceEvent.begin()/end() calls which implicitly gets the trace event name by doing a costly stack dump, with explicitly named trace event names. Also wrap traces around try/finally. BUG=439118 Review URL: https://codereview.chromium.org/795053007 Cr-Commit-Position: refs/heads/master@{#307974}
-
mathp authored
If available, will use local icons. Otherwise fallback to server provided image. BUG=440487 TBR=stevenjb Review URL: https://codereview.chromium.org/795863002 Cr-Commit-Position: refs/heads/master@{#307973}
-
jiayl authored
BUG=webrtc:3868 Review URL: https://codereview.chromium.org/787003004 Cr-Commit-Position: refs/heads/master@{#307972}
-
thestig authored
Review URL: https://codereview.chromium.org/798433002 Cr-Commit-Position: refs/heads/master@{#307971}
-
achaulk authored
BUG=434115 Review URL: https://codereview.chromium.org/795053006 Cr-Commit-Position: refs/heads/master@{#307970}
-