- 10 Jul, 2014 40 commits
-
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/380863002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282252 0039d316-1c4b-4281-b951-d872f2087c98
-
maxbogue@chromium.org authored
The downstream dependencies in Chrome for Android have been updated to use org.chromium.base.FieldTrialList, so the old code can be removed. BUG=378035 Review URL: https://codereview.chromium.org/378403002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282251 0039d316-1c4b-4281-b951-d872f2087c98
-
tmdiep@chromium.org authored
This patch removes the deprecated ExtensionInstaller and uses ExtensionInstallChecker in CrxInstaller and UnpackedInstaller. BUG=386404 TEST=browser_tests TBR=pam@chromium.org (for include in supervised_user_service_unittest.cc) Review URL: https://codereview.chromium.org/381553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282250 0039d316-1c4b-4281-b951-d872f2087c98
-
spang@chromium.org authored
We'll have a slightly modified test list. BUG=382573 TEST=none Review URL: https://codereview.chromium.org/379933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282249 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
This handler was added to forward the message to the parent window for cases where the size of the parent and the LegacyRenderWidgetHostHWND window were the same. We can directly call DefWindowProc on the parent window for non client mouse messages which generates WM_SYSCOMMAND for the parent window. This simplifies the LegacyRenderWidgetHostHWND class and also fixes bugs with WM_SYSCOMMAND messages not getting generated correctly due to missing styles on the LegacyRenderWidgetHostHWND hwnd which does not have the same styles as the parent. BUG=377367 Review URL: https://codereview.chromium.org/374283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282248 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
Previously, we'd halt running all further shards upon a timeout. Now, we'll just fail the one step and then continue. BUG=392490 Review URL: https://codereview.chromium.org/378423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282247 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
This is mostly to collect performance and size data for now, and to find out if more bots need work. Unless things look really good, I'm going to revert this by thursday morning (PDT). BUG=360311 TBR=ajwong@chromium.org Review URL: https://codereview.chromium.org/379413002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282246 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
Currently "warm start" app list cases (i.e. shown via the process singleton) have noisy UMA data. Whether the profile to show is loaded or not has a big impact on the metric. We are only interested in the case that the app list view is "warm", and can be immediately shown. Recording cases that first must load a profile from disk, or switch the app list view to a different profile, count as noise and skew the metric. This change filters out the noise, fixing an incorrect assumption in r270615 which resulted in only the noise being recorded (and a failed DCHECK otherwise). Before r270615, the UMA included cases requiring a profile load as well as those that didn't. After r270615, only cases that required a profile load were being recorded. Note that ShowAppListInteractiveTest.ShowAppListFlag was updated in r281213 to include both cold and warm codepaths via StartupBrowserCreator, to cover the aforementioned DCHECK. BUG=382793 Review URL: https://codereview.chromium.org/366233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282245 0039d316-1c4b-4281-b951-d872f2087c98
-
hyunki.baik@samsung.com authored
This is a minor refactor, that changes function names. BUG=NONE Review URL: https://codereview.chromium.org/375403003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282244 0039d316-1c4b-4281-b951-d872f2087c98
-
qinmin@chromium.org authored
For OMA files, it looks like that android download manager cannot correctly download it. Some of the files cannot be downloaded, and some of the files downloaded has different binary content as the ones downloaed on chrome desktop. Bypass android download manager for OMA mime types. BUG=382698 Review URL: https://codereview.chromium.org/331143010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282243 0039d316-1c4b-4281-b951-d872f2087c98
-
tommycli@chromium.org authored
BUG=NONE Review URL: https://codereview.chromium.org/383503002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282242 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
Makes the TwoClientPreferencesSyncTests compatible with reflection-blocking and enables reflection-blocking in its test harness. Introduces new StatusCheckers that wait for preferences. The new preference status checkers work by observering preference changes rather than sync cycle completion notifications. Also introduces some new status checkers to wait until encryption is enabled. Removes DisablePreferences and DisableSync tests because we have decided that there is not enough value in testing disable scenarios to bother maintaining them for each type. Removes several translation tests because they seem to not provide much additional value and they would be particularly onerous to maintain. Each one of these tests would have needed its own status checker or a generic status-checker that makes use of an injected Closure. Removes several encryption tests because they were redundant. Removes or renames many other redundant tests. BUG=97780,95742,351159 Review URL: https://codereview.chromium.org/342853004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282241 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
R=bruening@chromium.org BUG=none NOTRY=true Review URL: https://codereview.chromium.org/380813005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282238 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
Move TemplateURLFetcher and TemplateURLParser to components/search_engines Add dependencies on libxml and ui/gfx (for gfx::kFaviconSize) BUG=371535 TEST=build TBR=sky@chromium.org for include fix under chrome/browser/{importer,profiles} TBR=danakj@chromium.org as an owner of ui/gfx, a DEPS line moved from chrome/browser/search_engines to components/search_engines TBR=brettw@chromium.org as an owner of third_party/libxml, a DEPS line moved from chrome/browser/search_engines to components/search_engines Review URL: https://codereview.chromium.org/373343003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282237 0039d316-1c4b-4281-b951-d872f2087c98
-
suderman@chromium.org authored
to track the set of video rotation metadata. This will later be used to correctly orient rotated videos. BUG=47554 Review URL: https://codereview.chromium.org/363813002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282236 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=bruening@chromium.org BUG=none Review URL: https://codereview.chromium.org/379393002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282235 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
TBR=tsepez (no changes to semantics) Review URL: https://codereview.chromium.org/375393002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282234 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282228 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282227 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/1c577cd3ee331944b9061ee0eec147b211ee563c..57ad493789cb1a97574390b5ccf4fb9183ed3814 CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_layout_rel TBR=jcgregorio@google.com BUG= Review URL: https://codereview.chromium.org/384533002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282226 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
When BrowserActionOverflowMenuController is deleted, it deletes its associated IconUpdaters. When these go away, they remove themselves as the observer on the associated BrowserActionViews. This led to the use-after-free if the BrowserActionOverflowMenuController outlasts any of the BrowserActionViews. BUG=391061 Review URL: https://codereview.chromium.org/379483003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282224 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
Set FontRenderParams in RenderTextHarfBuzz on Linux. (required for text aliasing and subpixel settings) Replace font_smoothing_win with font_render_params_win.cc (unify the cross-platform methods of getting this info) BUG=391868,321868 TEST=Chrome OS tray button text looks good with --enable-harfbuzz-rendertext; no other font appearance changes on Win/Linux/CrOS and --enable-harfbuzz-rendertext uses the same font rendering settings as the default Uniscribe/Pango RenderText implementations. R=derat@chromium.org,ckocagil@chromium.org TBR=asvitkine@chromium.org,boliu@chromium.org Review URL: https://codereview.chromium.org/385463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282223 0039d316-1c4b-4281-b951-d872f2087c98
-
bbudge@chromium.org authored
Clears memory so we don't send unitialized memory to the renderer. BUG=391023 Review URL: https://codereview.chromium.org/383543004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282222 0039d316-1c4b-4281-b951-d872f2087c98
-
wjmaclean@chromium.org authored
Not all WebContents will be zoomed by chrome_page_zoom::Zoom(), but those that are need to have a ZoomCOntroller. It is assumed that at the point at which the WebContents is created it should be known if it will be passed into chrome_page_zoom::Zoom(), so the ZoomController is created at that point. BUG=391708 Review URL: https://codereview.chromium.org/373733003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282221 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
Also clean up 2d canvas code to respect command line switches. BUG=392663 Review URL: https://codereview.chromium.org/375193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282220 0039d316-1c4b-4281-b951-d872f2087c98
-
changwan@chromium.org authored
TEST=passed ContentViewTest BUG=388961 Review URL: https://codereview.chromium.org/372693003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282219 0039d316-1c4b-4281-b951-d872f2087c98
-
chrishenry@google.com authored
RepaintContinouosly ReloadAction PinchAction ScrollBounceAction Play/Seek/LoopAction (media actions) Changes in try 2: fixed missing change to pinch.js, also revamped documentation for scroll bounce gesture. BUG=361809 Review URL: https://codereview.chromium.org/346923003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282218 0039d316-1c4b-4281-b951-d872f2087c98
-
horo@chromium.org authored
> Add function queryForNewLocalDevices to send query for new local devices, > implement it for mDNS (WiFi devices forthcoming) > > BUG=383167 > > Review URL: https://codereview.chromium.org/356613002 TBR=noamsml@chromium.org Review URL: https://codereview.chromium.org/377383008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282217 0039d316-1c4b-4281-b951-d872f2087c98
-
mattm@chromium.org authored
BUG=338887 Review URL: https://codereview.chromium.org/371953003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282213 0039d316-1c4b-4281-b951-d872f2087c98
-
rpaquay@chromium.org authored
We have to use the SetupDIGetDeviceProperty API to retrieve this specific property, as the "connected" status is something common to many PnP devices. BUG=388016 Review URL: https://codereview.chromium.org/379943003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282212 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
BUG=388510 R=pkasting@chromium.org TBR=nyquist@chromium.org TEST=build all Review URL: https://codereview.chromium.org/377153004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282211 0039d316-1c4b-4281-b951-d872f2087c98
-
qyearsley@chromium.org authored
BUG= Review URL: https://codereview.chromium.org/359013002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282209 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
DelegatedRendererLayerImpl computes an inverse device scale factor when receiving frame data so it can map from the delegating renderer's physical space to DIP space and then remap the quads from its renderer's DIP space to physical again. When using impl side painting, the frame is received by the DRLI on the pending tree. We need to push this factor to the active tree when pushing the passes so we can produce the correct quads from the active tree. BUG=382967 Review URL: https://codereview.chromium.org/385433002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282208 0039d316-1c4b-4281-b951-d872f2087c98
-
gcasto@chromium.org authored
Specifically, how often do users save these accounts and how often are they used. TBR=rogerta@chromium.org BUG=386403 Review URL: https://codereview.chromium.org/355143006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282207 0039d316-1c4b-4281-b951-d872f2087c98
-
newt@chromium.org authored
NOTRY=true BUG=375379 Review URL: https://codereview.chromium.org/378043002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282206 0039d316-1c4b-4281-b951-d872f2087c98
-
skobes@chromium.org authored
This is a first pass at smooth scrolling on the compositor thread. It adds LayerTreeHostImpl::ScrollAnimated, which kicks off a scroll offset animation through the layer animation controller. When the --enable-smooth-scrolling flag is present, InputHandlerProxy will call ScrollAnimated for composited wheel scrolls. Once this is in the next steps are: (1) Update the animation curve to aim at a new target when a wheel event comes in while a scroll animation is in progress. (For now we just drop the event.) (2) Unify the behavior with WebCore::ScrollAnimatorNone. We should be able to share a lot of logic since cc::ScrollOffsetAnimationCurve is already exposed to Blink through compositor bindings (for http://crbug.com/243871). BUG=575 Review URL: https://codereview.chromium.org/361143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282205 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
Round point-based Pango font sizes to the nearest pixel. Otherwise, we can end up with smaller UI fonts than GTK+ 2.0 apps in some cases. This seems to be in line with what get_scaled_size() does in Pango's pango/pangofc-fontmap.c, and gives me identically sized text in Gimp 2.6.12 and Chrome when I set the Gtk/FontName XSETTINGS property to "Arial 10". Note that Chrome doesn't currently honor additional fine-grained configuration performed via FontConfig, like disabling antialiasing for fonts of a certain size. That'll happen in a separate change. BUG=375824 Review URL: https://codereview.chromium.org/377413002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282204 0039d316-1c4b-4281-b951-d872f2087c98
-
tsepez@chromium.org authored
This prevents a MSAN warning. BUG=390973 R=piman@chromium.org Review URL: https://codereview.chromium.org/362353004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282203 0039d316-1c4b-4281-b951-d872f2087c98
-
ttuttle@chromium.org authored
Add a basic diagnostic page for Domain Reliability at chrome://domain-reliability-internals/. BUG= Review URL: https://codereview.chromium.org/357103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282202 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282201 0039d316-1c4b-4281-b951-d872f2087c98
-