- 18 Jun, 2014 32 commits
-
-
mgiuca@chromium.org authored
Added calamity and mgiuca (working heavily in these folders). Removed koz (no longer works on app list). BUG=None NOTRY=true Review URL: https://codereview.chromium.org/339983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277971 0039d316-1c4b-4281-b951-d872f2087c98
-
ccameron@chromium.org authored
This is in preparation for support for using remote CALayers. The big change is to separate out ImageTransportSurfaceIOSurface into ImageTransportSurfaceFBO and its StorageProvider. The IOSurface- specific bits of ImageTransportSurfaceIOSurface are moved into the StorageProvider. A separate CALayer-specific version will be added later. While in the neighborhood, don't make everything inherit from GLSurfaceCGL (that class doesn't actually do anything). Move the helper functions and classes from its file to more appropriate locations. Make image_transport_surface_mac.cc a .mm file, because it will need to include Objective C code in the near future. Move the ImageTransportSurfaceFBO into its own file. Also make the IOSurface handles in renderer_host use the 32-bit IOSurfaceID handle type instead of uint64, since that is the type actually used by the interface, and those other bits may find use in disambiguating handle types. BUG=312462 Review URL: https://codereview.chromium.org/334173006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277970 0039d316-1c4b-4281-b951-d872f2087c98
-
dnicoara@chromium.org authored
BUG=381041 Review URL: https://codereview.chromium.org/341673002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277969 0039d316-1c4b-4281-b951-d872f2087c98
-
bulach@chromium.org authored
StopWatchingAll() can be called before InitializeAndStartWatching is called. Before bailing out, disarm the startup watchdog. BUG= Review URL: https://codereview.chromium.org/341713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277968 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
People are using bigger and bigger monitors these days! This change only makes a difference when RANDR-enabled Xvfb is used. NOTRY=true Review URL: https://codereview.chromium.org/341653004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277967 0039d316-1c4b-4281-b951-d872f2087c98
-
lazyboy@chromium.org authored
this is no longer used. r92045 removed RenderWidgetHostView::WillDestroyRenderWidget(). BUG=None Test=None, internal only change. Review URL: https://codereview.chromium.org/339273003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277966 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
Remove TemplateURL::profile_. Remove TemplateURLService::AddAndSetProfile which does nothing other than calling Add(). Merge TemplateURLService::GenerateSearchURLUsingTermsData and GenerateSearchURLUsingTermsData. BUG=383283 TEST=git cl try TBR=sky@chromium.org Review URL: https://codereview.chromium.org/338363004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277965 0039d316-1c4b-4281-b951-d872f2087c98
-
danakj@chromium.org authored
Currently we do a walk over all tiles in the pending tree's pile, but there can be 1 million x 1 million tiles on some pages, which makes this method take multiple _seconds_ to complete. These loops were added in r184525 which gave the tradeoffs that led to them, which are that we want to only use a single pile for all the tiles on this layer, but we don't want raster tiles on the active layer (when this activates) that can't be rastered by the pile they are attached to. Instead of walking every pile-tile, to find the tiles that are not present in the current recording and invalidate them, we expand invalidations outside the interest rect to cover the full recording tiles, and we expand invalidation inside the interest rect to include any raster tiles that don't have a recording (such as in the offscreen animating gif case). We give this expanded invalidation to the pending layer, causing it to drop rastered tiles from the active tree that intersect with an unrecorded area. R=enne BUG=371839 Review URL: https://codereview.chromium.org/294163009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277964 0039d316-1c4b-4281-b951-d872f2087c98
-
peria@chromium.org authored
There are some DCHECK() to check iterators, but it checks nothing in release builds. We have to check them to avoid crashes in release builds. BUG=364243 Review URL: https://codereview.chromium.org/338993004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277963 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/324033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277962 0039d316-1c4b-4281-b951-d872f2087c98
-
kevers@chromium.org authored
The login and lock screens can toggle overscroll mode for the virtual keyboard without triggering a rebuild of the VK. Thus, it is possible to be in an inconsistent state between keyboard bounds change notifications. This patch forces any insets to be reset if overscroll mode is not enabled. BUG=384981 Review URL: https://codereview.chromium.org/341623002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277961 0039d316-1c4b-4281-b951-d872f2087c98
-
mathp@chromium.org authored
Default will be 200ms. BUG=None TEST=None Review URL: https://codereview.chromium.org/341483007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277960 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
Trying to merge as many of flow control changes as possible before the branch (we have all changed until Fri 06/13 21:20 UTC). Test tools for udp proxying. This involves a few refactors of test tools but nothing which affects the internal server. minor refactors to allow quic udp proxy testing. Merge internal change: 69157651 https://codereview.chromium.org/331963002/ Added FEC policy per stream, which is translated to an FEC protection value on writes further on down. Merge internal change: 69153464 https://codereview.chromium.org/338623002/ Pull out stream/session updates from OnConfigNegotiated. Preparation for updating stream/session with different received windows. QUIC refector: Pull out stream/session updates from OnConfigNegotiated Merge internal change: 69106467 https://codereview.chromium.org/337723003/ Rather than passing initial_flow_control_window all the way down the call stack, put it inside QuicConfig as intended: each member of QuicConfig has a "value to send" field, so populate this at the top level. rtenneti: when porting to Chromium, you should add config.SetInitialFlowControlWindowToSend(kInitialReceiveWindowSize) in QuicStreamFactory::CreateSession, just above line 837: *session = new QuicClientSession(...) Store initial flow control window for QUIC in QuicConfig. No behavior change intended. Added the following unit tests to EndToEndTest.cc + DoNotSetResumeWriteAlarmIfConnectionFlowControlBlocked + NegotiateMaxOpenStreams Merge internal change: 69079363 https://codereview.chromium.org/333803007/ First version of a QUIC SendAlgorithmSimulator which is designed to simulate BBR and TCP flows and changes. Merge internal change: 69035927 https://codereview.chromium.org/330163003/ R=rch@chromium.org, wtc@chromium.org Review URL: https://codereview.chromium.org/330333006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277959 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
This makes the gl_tests and gpu_unittests targets link and run and fixes up a few other misc issues: *) outdated nss filelists and defines *) outdated cc file lists R=brettw@chromium.org, piman@chromium.org TBR=ben@chromium.org for ui/events/ change Review URL: https://codereview.chromium.org/338633004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277958 0039d316-1c4b-4281-b951-d872f2087c98
-
petewil@chromium.org authored
Since we don't have alt text yet, accessibility screen readers have nothing useful to say in screen readers. Until alt text is available, disable the images from appearing in the screen reader. This is done by removing the accessibility child object from a parent. In this case, we introduce a new fake parent object for the small icon, and make the existing parent ignore the image for the large icon and the large image of an image notification. BUG=381363 Review URL: https://codereview.chromium.org/325203003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277957 0039d316-1c4b-4281-b951-d872f2087c98
-
plundblad@chromium.org authored
This sets the COMPILED flag in base.js to true when compressing the javascript sources. ChromeVox makes assumptions about what content script files to load (which it could get from the manifest) and also does initialization differently depending on thsi flag. Leaving cleanup of that to later CLs if we want to do that in the interest of changing as little as possible during the migration. BUG=371692 R=dtseng@chromium.org Review URL: https://codereview.chromium.org/333503002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277956 0039d316-1c4b-4281-b951-d872f2087c98
-
jackhou@chromium.org authored
This test creates shims in the user data dir and actually starts them up and expects them to connect to the IPC socket. BUG=168080, 386024 NOTRY=true Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=276368 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=277743 Review URL: https://codereview.chromium.org/316493002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277955 0039d316-1c4b-4281-b951-d872f2087c98
-
sashab@chromium.org authored
Changed the layout of the App Info Dialog according to UI feedback. This includes removing the tabs, and replacing it with a single, scrollable dialog that has all the information in a single pane. BUG=364681,266739 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=276557 Review URL: https://codereview.chromium.org/327743002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277954 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277939 0039d316-1c4b-4281-b951-d872f2087c98
-
mef@chromium.org authored
BUG=354143 Review URL: https://codereview.chromium.org/332553003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277932 0039d316-1c4b-4281-b951-d872f2087c98
-
felt@chromium.org authored
The extended safe browsing reporting opt-in should point to the whitepaper section on malware. This CL: - Adds a "privacy policy" link to the dialog - Updates the existing URL to point to the specific malware section instead of the generic privacy policy BUG=383866 Review URL: https://codereview.chromium.org/339073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277930 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
This CL removes redundant internal functions which are identical, and replaces them with one. Moreover, the new general purpose error API function, passes now the entire value to the request manager. This is because, very soon, we are going to pass extra information with every error and success responses and we want to have access to them in the RequestManager. NOTRY=true TEST=unit_tests, browser_tests: *FileSystemProvider* BUG=373165, 384201 Review URL: https://codereview.chromium.org/335753004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277929 0039d316-1c4b-4281-b951-d872f2087c98
-
rockot@chromium.org authored
Let the base ExtensionAPIPermissions set provide the usbDevices permission, rather than restricting it to Chrome only. BUG=385738 R=yoz@chromium.org Review URL: https://codereview.chromium.org/339953002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277927 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
This is especially needed because ui/gfx headers, in turn, can include skia headers, which are only meaningful in the context of skia's compile flags. Those are available from ui/gfx since it re-exports skia's dependencies. Landing tbr to unblock skia's DEPS roll. TBR=lambros@chromium.org Review URL: https://codereview.chromium.org/341633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277926 0039d316-1c4b-4281-b951-d872f2087c98
-
mlerman@chromium.org authored
BUG=357693 Review URL: https://codereview.chromium.org/319583002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277925 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
Now that the uses have been ported to the new methods remove the old ones. BUG=375379 Review URL: https://codereview.chromium.org/338033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277924 0039d316-1c4b-4281-b951-d872f2087c98
-
macourteau@chromium.org authored
BUG=385648 TBR=tnagel@chromium.org Review URL: https://codereview.chromium.org/339183003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277923 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
It may be necessary to create custom filters/observers etc. on the renderer side in athena (e.g., for virtual keyboard support). So allow athena to install a delegate to be created in the renderer process. The delegate is notified when the RenderThread is initialized, or when new RenderViews are created. BUG=380215 R=jamescook@chromium.org, oshima@chromium.org Review URL: https://codereview.chromium.org/331323008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277922 0039d316-1c4b-4281-b951-d872f2087c98
-
sammc@chromium.org authored
Review URL: https://codereview.chromium.org/311313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277921 0039d316-1c4b-4281-b951-d872f2087c98
-
felt@chromium.org authored
The new layout was missing space for a checkbox. This adds the checkbox, and adjusts the surrounding margins. BUG=381260 Review URL: https://codereview.chromium.org/339503004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277920 0039d316-1c4b-4281-b951-d872f2087c98
-
jiayl@chromium.org authored
BUG=383999 Review URL: https://codereview.chromium.org/336833002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277914 0039d316-1c4b-4281-b951-d872f2087c98
-
ben@chromium.org authored
It's duplicative with NodeObserver::OnDestroy. R=sky@chromium.org BUG=none Review URL: https://codereview.chromium.org/341553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277913 0039d316-1c4b-4281-b951-d872f2087c98
-
- 17 Jun, 2014 8 commits
-
-
https://codereview.chromium.org/291993003/thakis@chromium.org authored
r271506 removed has_sse2 from the gcc file, but it remained in the tsan header. (I asked in https://codereview.chromium.org/10948035/diff/17001/base/atomicops_internals_tsan.h#newcode24 for why this struct is in this file at all.) BUG=348761, 94925 Review URL: https://codereview.chromium.org/345453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277909 0039d316-1c4b-4281-b951-d872f2087c98
-
noms@chromium.org authored
This error is shown both in the avatar button, and in the avatar menu. When the account for which we're displaying the auth error is clicked in the avatar menu, we show the Gaia reauth view. Screenshot: https://drive.google.com/file/d/0B1B1Up4p2NRMQW90VmcwcGZQVEU/edit?usp=sharing I've also fixed a bug where the available text for the account name was incorrectly calculated, and eliding overlapped the delete button. Screenshot: https://drive.google.com/file/d/0B1B1Up4p2NRMaU9DcWdqTVZNMVk/edit?usp=sharing BUG=311235 TEST= Sign into Chrome with the --new-profile-management flag on. Go to accounts.google.com and revoke Chrome's access to that account, from the Security tab. Try to bookmark the current page. The avatar button should be badged like in the attached screenshot. Review URL: https://codereview.chromium.org/303463010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277908 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
Remove locks, post tasks, and complexity used to support legacy rendering path. BUG=344087 Review URL: https://codereview.chromium.org/331103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277907 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
BUG=None TEST=None Review URL: https://codereview.chromium.org/340553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277905 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
Identify Android vs iOS requests so that server can adjust respond differently to mobile hits than desktop. BUG=none Review URL: https://codereview.chromium.org/337803006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277904 0039d316-1c4b-4281-b951-d872f2087c98
-
wolenetz@chromium.org authored
r274473 did not remove sanity checks for negative PTS/DTS that occur prior to any adjustment based on timestampOffset. Current MSE spec does not call for issuing decode error if PTS or DTS are negative at the top of the coded frame processing loop. This change removes the sanity checks that are not spec-compliant. R=acolwell@chromium.org BUG=381114 TEST=FrameProcessorTest.AllowNegativeFramePTSAndDTSBeforeOffsetAdjustment Review URL: https://codereview.chromium.org/334363006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277903 0039d316-1c4b-4281-b951-d872f2087c98
-
n.bansal@samsung.com authored
Updated ClearFormWithElement() to ignore fields that were not autofilled. BUG=379969 Review URL: https://codereview.chromium.org/316853006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277902 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277901 0039d316-1c4b-4281-b951-d872f2087c98
-