- 05 Dec, 2012 28 commits
-
-
justinlin@chromium.org authored
BUG=158086 Review URL: https://codereview.chromium.org/11316329 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171118 0039d316-1c4b-4281-b951-d872f2087c98
-
mgiuca@chromium.org authored
Added method RenderView::FromRoutingID to expose internal lookup function. BUG=155398 Review URL: https://chromiumcodereview.appspot.com/11316160 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171117 0039d316-1c4b-4281-b951-d872f2087c98
-
rjkroege@chromium.org authored
Clean up some code in the GesturePoint to provide centralized access to the scroll deltas so that smoothing of scroll start is easier to implement. BUG=141653 Review URL: https://chromiumcodereview.appspot.com/11415293 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171116 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171113 0039d316-1c4b-4281-b951-d872f2087c98
-
ajuma@chromium.org authored
This change is in preparation for threading certain ui animations. When we do this, the actual duration of an element will not be known ahead of time, since dispatching the element to the compositor thread will involve a small delay. BUG=164206 Review URL: https://chromiumcodereview.appspot.com/11316315 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171112 0039d316-1c4b-4281-b951-d872f2087c98
-
enne@chromium.org authored
Tiles now have a contents scale that they are rastered with, so that non-1.0 contents scales work. Additionally, PictureLayer derives from ContentsScalingLayer so that it picks up the right content bounds and default contents scale. BUG=155209 Review URL: https://chromiumcodereview.appspot.com/11421210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171111 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=107201,133436 TEST=no visible change Review URL: https://chromiumcodereview.appspot.com/11418260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171110 0039d316-1c4b-4281-b951-d872f2087c98
-
nyquist@chromium.org authored
This changes the Android port of Chrome to depend on the pref kSyncSessionsGUID to be set before the SessionModelAssociator is initialized. We now also force-removes any foreign sessions that are using the current client's GUID as a session tag. This also lead to the removal of the Android specific session utils. BUG=157419 Review URL: https://chromiumcodereview.appspot.com/11414013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171109 0039d316-1c4b-4281-b951-d872f2087c98
-
brianderson@chromium.org authored
Some device's concept of time might be off. To prevent corrupt texture runtime measurements from corrupting the texture upload logic, we clamp the runtimes to the range of [1,15000] microseconds. If the corrupt runtimes are 0, this patch will effectively cause us to always upload all pending textures. This is a workaround until the async texture upload feature lands. BUG=162699 Review URL: https://chromiumcodereview.appspot.com/11434111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171108 0039d316-1c4b-4281-b951-d872f2087c98
-
danakj@chromium.org authored
R=sky BUG=163454 Depends on: https://codereview.chromium.org/11418217/ NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11299262 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171107 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
Marked IPC::ChannelProxy as non thread-safe. Added DCHECKs to verify that public methods (with Send() being the only exception) are called on the thread that created the object. Tests calling Send() from a wrong thread should be fixed first before similar check can be added to Send(). See http://crbug.com/163523 for details. BUG=163091,163523 Review URL: https://chromiumcodereview.appspot.com/11308278 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171106 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
Refactor ProcessSingleton to allow a Desktop process to activate Metro Chrome instead of grabbing the singleton (while making sure it simply RDVs if there already is an existing Chrome). Use a Windows event to let the Metro process notify the Desktop process once it grabbed the singleton (no more Sleep()). The idea is the following: 0) Any process always tries to rendez-vous before anything else. 1) A Metro process can always try to grab the singleton. 2) A Desktop process might wait if: a) The metro activation event exists b) The metro activation event doesn't exist, but ShouldActivate() returns true - In which case it creates the metro activation event and activates Metro Chrome (which will notify this process via the event once it grabbed the singleton; at which point this process should rendez-vous with it). All of this is done while holding a global mutex (only releasing it while waiting and re-acquiring it before continuing when notified). The process singleton acquiring logic has also been moved from the constructor to Create(). BUG=155585, 159869 TEST=Process singleton works as before (and better in tricky corner cases -- see http://crbug.com/159869) on Win8. Review URL: https://chromiumcodereview.appspot.com/11099053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171105 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@google.com authored
BUG=164296 Review URL: https://codereview.chromium.org/11446003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171104 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
> Adding transmission times for every QUIC packet received in the AckFrame. > Making the scheduler a strict mock for quic connection test. > > Merge internal change: 39116450 > Merge internal change: 38802607 > > > Review URL: https://chromiumcodereview.appspot.com/11416155 TBR=rch@chromium.org Review URL: https://codereview.chromium.org/11439003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171103 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
Adding support for password Autofill popups for Android. BUG=163619 Review URL: https://chromiumcodereview.appspot.com/11299287 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171102 0039d316-1c4b-4281-b951-d872f2087c98
-
benwells@chromium.org authored
A better fix for the problem this revert was addressing has been checked in in r171097. > Disable the settings app by default. > > BUG=164064 > TBR=tapted, benwells > > Review URL: https://codereview.chromium.org/11428167 TBR=erikwright@chromium.org Review URL: https://codereview.chromium.org/11441002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171101 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
Allows the host side to register a ResourceHost as pending and send an ID to the plugin, to be connected to a PluginResource at a future time. BUG= Review URL: https://chromiumcodereview.appspot.com/11414147 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171099 0039d316-1c4b-4281-b951-d872f2087c98
-
benwells@chromium.org authored
BUG=164064 Review URL: https://codereview.chromium.org/11414314 Patch from Trent Apted <tapted@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171098 0039d316-1c4b-4281-b951-d872f2087c98
-
kmadhusu@chromium.org authored
(1) Added a recursive boolean param to FilePathWatcher::Watch() function to watch for sub directory tree changes. Fixed all the calling sites. (2) Added support to watch sub trees on Windows. (3) Added FilePathWatcherTest.RecursiveWatch browser test. BUG=144491 TEST=none Review URL: https://chromiumcodereview.appspot.com/11415066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171097 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
Making the scheduler a strict mock for quic connection test. Merge internal change: 39116450 Merge internal change: 38802607 Review URL: https://chromiumcodereview.appspot.com/11416155 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171096 0039d316-1c4b-4281-b951-d872f2087c98
-
egraether@chromium.org authored
BUG=130663 Review URL: https://chromiumcodereview.appspot.com/11418259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171095 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
This changes it so that we no longer throw an unrecoverable error if we get an auth error while bringing up the backend (which can happen if we fail to download control types). We now let just let the backend continuing retrying (in backoff mode), until the user resolves the auth error, at which point we'll perform our pending sync cycle, finishing backend initialization. BUG=163491 Review URL: https://chromiumcodereview.appspot.com/11428125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171094 0039d316-1c4b-4281-b951-d872f2087c98
-
finnur@chromium.org authored
It looks like there might be a correlation between our features and the memory regression. This will hopefully tell us which feature is causing it. BUG=163697 TEST=None Review URL: https://codereview.chromium.org/11299344 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171093 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171092 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
R=rvargas@chromium.org, jhawkins@chromium.org Review URL: https://codereview.chromium.org/11419319 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171091 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
the linux one is needed at all. Layout tests that try to set a default theme when USE_DEFAULT_RENDER_THEME is set won't work. I'll figure that out when we get further along. BUG=none TEST=none R=tony@chromium.org Review URL: https://chromiumcodereview.appspot.com/11416342 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171090 0039d316-1c4b-4281-b951-d872f2087c98
-
eae@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171089 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
With this, we survive killing the adb process which produces the same stack as: http://build.chromium.org/p/chromium.perf/builders/Android%20GN/builds/764/steps/jsgamebench/logs/stdio BUG=163661 TEST='killall -9 adb' while running a benchmark Review URL: https://codereview.chromium.org/11348370 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171088 0039d316-1c4b-4281-b951-d872f2087c98
-
- 04 Dec, 2012 12 commits
-
-
scottmg@google.com authored
(I can't see any good reason why this code was disabled on aura) R=jam@chromium.org BUG=154081 TEST=interactive_ui_tests on win_aura, PanelBrowserTest.MinimizeRestore* Review URL: https://codereview.chromium.org/11416351 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171087 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://flashbauerb@chromium.org authored
TBR=estade@chromium.org BUG=105673 Review URL: https://chromiumcodereview.appspot.com/11308348 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171086 0039d316-1c4b-4281-b951-d872f2087c98
-
csharp@chromium.org authored
BUG=164091 Review URL: https://chromiumcodereview.appspot.com/11411364 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171085 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
test_support_ash -> ash_test_support test_support_aura -> aura_test_support this means all the target names will align: foo foo_unittests foo_test_support et al. BUG=163674 R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/11428130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171084 0039d316-1c4b-4281-b951-d872f2087c98
-
tedv@chromium.org authored
The associated CR involves moving mutation interfaces of URLRequestJobFactory to URLRequestJobFactory. As such, their initializations need to maintain their type as URLRequestJobFactoryImpl before those interfaces can be removed. See CL https://codereview.chromium.org/11227017 for more information. BUG=146602 Review URL: https://chromiumcodereview.appspot.com/11418203 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171083 0039d316-1c4b-4281-b951-d872f2087c98
-
cpu@chromium.org authored
When draggin a window from the tab to re-attach the tab to another window it didn't work because the windows enumeration was not ignoring the window that was being moved (aka itself). BUG=128578 TEST= windows aura desktop, drag tab out and try to re-attach. Review URL: https://codereview.chromium.org/11416345 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171082 0039d316-1c4b-4281-b951-d872f2087c98
-
xhwang@chromium.org authored
This CL also changes the expected behavior of GenerateKeyRequest() of CleryKey key system when init_data is null. Previously it returns MediaKeyException (from render side) or fires KeyError (from plugin side). Now it fires an empty KeyMessage regardless. In the future the spec should be clear about this. BUG=163785 TEST=media Layout test; media_unittests; content_browsertests Review URL: https://chromiumcodereview.appspot.com/11348365 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171081 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@chromium.org authored
The refactors PPB_Flash_File_ModuleLocal/FileRef to the new resource model. Calls for both these interfaces are now made directly to the browser. This removes the in-process implementation for these interfaces also (as they are flash-only). Tests are added for PPB_Flash_File_ModuleLocal. Review URL: https://codereview.chromium.org/11359097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171080 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
browsing), and unravel the knots that result from it: - Decouple it from the admin policy. - Take the other half of blacklist logic out of ExtensionPrefs and into Blacklist. - Fix bug where blacklisted extensions couldn't be re-installed (let alone re-enabled) if they get taken off the blacklist. TBR=sky@chromium.org BUG=154149,156750 Review URL: https://chromiumcodereview.appspot.com/11415216 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171079 0039d316-1c4b-4281-b951-d872f2087c98
-
sail@chromium.org authored
This CL moves the detached bookmark bar to the bottom of the new tab page. Some differences between this and the old detached bookmark bar: - view is horizontally centered - view has a maximum width of 720 - view is hidden if the height of the new tab page goes below 558 - view doesn't animate when attached or detached from the toolbar Some things that this CL doesn't do yet: - update the look of the detached bookmark bar - hide the attached bookmark bar when showing instant search results Screenshot: http://i.imgur.com/ihkO0.png BUG=160843 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/11428149 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171075 0039d316-1c4b-4281-b951-d872f2087c98
-
mnaganov@chromium.org authored
AppCacheEnabled is mapped onto WebPreferences.application_cache_enabled, which goes directly into WebKit Settings. AppCachePath is only used as a flag to enable AppCache. We can't make use of the full path given, because in Chromium the Application Cache directory lives inside the browser context (profile). The tests added trigger a DCHECK in disk cache, unless the profile is empty when the test starts. This makes impossible to run them both now, so only one of them is enabled for now. Android CTS tests WebSettings.testAppCache{Disabled|Enabled} are passing with this patch. Review URL: https://chromiumcodereview.appspot.com/11411229 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171074 0039d316-1c4b-4281-b951-d872f2087c98
-
creis@chromium.org authored
(This should be reverted after a day on the canary.) BUG=143155 TEST=none Review URL: https://chromiumcodereview.appspot.com/11299320 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171073 0039d316-1c4b-4281-b951-d872f2087c98
-