- 03 Mar, 2012 14 commits
-
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124801 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
Only change: Silence genperf's success-related chatter. Review URL: http://codereview.chromium.org/9584027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124800 0039d316-1c4b-4281-b951-d872f2087c98
-
rkc@chromium.org authored
This CL implements the auto-logout feature for Kiosk mode. The timeouts are pulled from the kiosk_mode_helper class. This CL implements parts of the code for http://codereview.chromium.org/9265026/ Though this code is vastly refactored and reduced. R=xiyuan@chromium.org BUG=chromium-os:26045 TEST=Tested with the flag to ensure the feature works correctly. Review URL: http://codereview.chromium.org/9568038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124799 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=114808 Review URL: http://codereview.chromium.org/9545010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124797 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
Minimized panels are not "minimized" from the OS point of view so they may receive focus when other windows are minimized or closed. This patch sets the flags on the minimized panels in such way that they are not activated by the OS but still appear in the Alt-Tab menu and on the taskbar. BUG=102721 TEST=Manually verify that minimized panels do not open spontaneously when other windows are closed, but are accessible through the taskbar and Alt-Tab. Review URL: http://codereview.chromium.org/9463022 TBR=aburago@chromium.org Review URL: https://chromiumcodereview.appspot.com/9593001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124795 0039d316-1c4b-4281-b951-d872f2087c98
-
rtenneti@chromium.org authored
can be enabled with command line flag --flow-control R=willchan TEST=network unittests BUG=116167 Review URL: http://codereview.chromium.org/9516009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124794 0039d316-1c4b-4281-b951-d872f2087c98
-
simonjam@chromium.org authored
Ensure pipelined requests are sent in the same order they're queued. Also, ensure HttpPipeliningCompatibilityClient closes the stream when it's done with a request. BUG=110794 TEST=net_unittests and unit_tests Review URL: http://codereview.chromium.org/9567025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124793 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
BUG=115845 TEST=none R=ben@chromium.org Review URL: http://codereview.chromium.org/9582025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124792 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
TEST=./net_unittests --gtest_filter=HostResolverImplTest.CanceledRequestsReleaseJobSlots Review URL: https://chromiumcodereview.appspot.com/9584035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124791 0039d316-1c4b-4281-b951-d872f2087c98
-
aburago@chromium.org authored
Minimized panels are not "minimized" from the OS point of view so they may receive focus when other windows are minimized or closed. This patch sets the flags on the minimized panels in such way that they are not activated by the OS but still appear in the Alt-Tab menu and on the taskbar. BUG=102721 TEST=Manually verify that minimized panels do not open spontaneously when other windows are closed, but are accessible through the taskbar and Alt-Tab. Review URL: http://codereview.chromium.org/9463022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124790 0039d316-1c4b-4281-b951-d872f2087c98
-
nduca@chromium.org authored
BUG=116189 Review URL: http://codereview.chromium.org/9584022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124789 0039d316-1c4b-4281-b951-d872f2087c98
-
jond@google.com authored
Changed <code> to @code and </code> to @endcode (for formatting issues. Removed .html (extensions not needed for DevSite) as per Andy. Review URL: http://codereview.chromium.org/9421037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124788 0039d316-1c4b-4281-b951-d872f2087c98
-
zelidrag@chromium.org authored
This change attempts to reduce the load time of the file manager (especially on slow Alex devices) by trimming unnecessary work done in javascript and reducing layouts. - Enable batch updating in cr.ui.Table (exactly how it's done in cr.ui.List). - Add more 'on complete' callbacks to some of the FileManager infrastructure so we know when to stop batch UI updates. - Use batch updates for some operations which profiling indicates causes non-trivial amounts of duplicated work. In particular, in my testing this reduces the number of (sometimes expensive) List.redraw() calls on startup for the table from 6 down to 1, and for the roots list from 4 down to 2. Measurements on alex are quite variable, but these changes result in about 70ms savings on startup (or about 17% of the time spent under 'v8.callChromeHiddenMethod' - i.e. JS callbacks through the extension system, which itself is about 1/3rd of total load time). The majority of file manager load time is spent inside of v8, and there are many more opportunities like these to trim various code paths. But it seems clear that major improvements are going to require more drastic approaches (eg. I'm experimenting with painting the initial UI after parsing/running a small fraction of the JS). BUG=105181 TEST= Review URL: http://codereview.chromium.org/9379023 TBR=rbyers@chromium.org Review URL: https://chromiumcodereview.appspot.com/9580035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124786 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
Also re-introduces a missing life check in case a request callback deletes the HostResolver. R=eroman@chromium.org,cbentzel@chromium.org BUG=115399 TEST=./net_unittest --gtest_filter=HostResolverImplTest.CanceledRequestsReleaseJobSlots Review URL: http://codereview.chromium.org/9572018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124783 0039d316-1c4b-4281-b951-d872f2087c98
-
- 02 Mar, 2012 26 commits
-
-
dgrogan@chromium.org authored
There were two problems. 1) We had started to write into profile/IndexedDB/IndexedDB/origin.leveldb/ (note the double IndexedDB). 2) We were writing into file__0.leveldb but checking for quota in __0.leveldb. Now we always use __0.leveldb. BUG=104748 TEST= Review URL: http://codereview.chromium.org/9567030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124782 0039d316-1c4b-4281-b951-d872f2087c98
-
rogerta@chromium.org authored
depends on http://codereview.chromium.org/9465018/ BUG=110050 TEST=No user visible changes, see unit tests. Review URL: http://codereview.chromium.org/9466022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124781 0039d316-1c4b-4281-b951-d872f2087c98
-
georgey@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/9566046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124780 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
-- limit visit history considered to 100k entries to avoid out of memory crashes -- exclude backforward/homepage/intermediate pages in redirect chain -- reduce minimum spacing of pages considered from 1s to 500ms -- collect histogram of core transition type of qualifying page views R=brettw, dominich Review URL: https://chromiumcodereview.appspot.com/9572021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124779 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
BUG=none TEST=happy heapcheck bots TBR=mdm@chromium.org Review URL: https://chromiumcodereview.appspot.com/9586023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124778 0039d316-1c4b-4281-b951-d872f2087c98
-
dominich@chromium.org authored
Review URL: http://codereview.chromium.org/9463026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124777 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124776 0039d316-1c4b-4281-b951-d872f2087c98
-
zelidrag@chromium.org authored
BUG=chromium-os:27223 TEST=GDataFileSystemTest.SearchExistingDocument Review URL: https://chromiumcodereview.appspot.com/9581024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124775 0039d316-1c4b-4281-b951-d872f2087c98
-
adamk@chromium.org authored
TBR=haraken@chromium.org Review URL: https://chromiumcodereview.appspot.com/9580028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124774 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
Unit tests to catch this will come in another CL. BUG=116607 TEST= Review URL: https://chromiumcodereview.appspot.com/9585025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124772 0039d316-1c4b-4281-b951-d872f2087c98
-
kaiwang@chromium.org authored
"--use-system-ssl" usage. The flag forces the user to use SSLClientSocket[Mac, Win], instead of the default NSS SSL implementation. I also changed the order of initialize callings in BrowserMainRunnerImpl::Initialize(), because originally the StatisticsRecorder was created after main loop flag parsing so the new histogram can not be recorded. Since StatisticsRecorder has few dependencies, I think this will not have negative effect. BUG=102003 Review URL: http://codereview.chromium.org/9570052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124770 0039d316-1c4b-4281-b951-d872f2087c98
-
dubroy@chromium.org authored
BUG=None TEST=Manual Review URL: http://codereview.chromium.org/9582022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124769 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/9581028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124768 0039d316-1c4b-4281-b951-d872f2087c98
-
tedchoc@chromium.org authored
This is a minimal starting point for merging our upstream android ntp resource changes into a somewhat clean slate. Based on how little of the shared resource cache code we used, it seems cleaner to start our own and not muddle that file with a ton of ifdefs. This is all in the hopes of getting sync_unit_tests linking upstream. BUG=113487 TEST= Review URL: http://codereview.chromium.org/9558014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124767 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
Page content often isn't completely loaded or laid out when the tab is first rendered. This makes the class additionally notify about subsequent renders so the delegate can hold off until it sees one after it's e.g. received notification via a WebUI message that the page is truly ready. BUG=chromium-os:26210 TEST=manual; also un-disabled the tests and checked that they still pass TBR=ben@chromium.org Review URL: http://codereview.chromium.org/9582012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124765 0039d316-1c4b-4281-b951-d872f2087c98
-
abodenha@chromium.org authored
Update strings. BUG=106636 TEST= Review URL: http://codereview.chromium.org/9433054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124764 0039d316-1c4b-4281-b951-d872f2087c98
-
vandebo@chromium.org authored
Split out from https://chromiumcodereview.appspot.com/9363008/ BUG=110400 TEST=NONE Review URL: http://codereview.chromium.org/9580018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124763 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
This is addition to http://codereview.chromium.org/9477021/ BUG=chromium-os:26646 TEST=none Review URL: https://chromiumcodereview.appspot.com/9584026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124762 0039d316-1c4b-4281-b951-d872f2087c98
-
skuhne@chromium.org authored
Changing some highlight / autocomplete colors BUG=115861 TEST=Visually tested Review URL: http://codereview.chromium.org/9585015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124761 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
This removes an animation that adds a bit of jank at startup. It doesn't have a significant effect on boot time in either direction, from my measurements. BUG=chromium-os:26210 TEST=manual: booted and checked that animation is gone Review URL: http://codereview.chromium.org/9568044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124760 0039d316-1c4b-4281-b951-d872f2087c98
-
jbauman@chromium.org authored
Adding this message all the time prevents us from processing other command buffers when there really isn't anything left to do. BUG=112349 TEST= Review URL: http://codereview.chromium.org/9583021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124759 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
Make everything use this instead of rolling their own. BUG=113723 TEST= Review URL: https://chromiumcodereview.appspot.com/9562037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124758 0039d316-1c4b-4281-b951-d872f2087c98
-
jond@google.com authored
Review URL: http://codereview.chromium.org/9569032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124757 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://filesfischman@chromium.org authored
BUG=chromium-os:26939 TEST=--allow-webui-compositing no longer needed to get HW-accelerated decode & render on ARM crosbook. Review URL: http://codereview.chromium.org/9583022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124756 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/9569029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124755 0039d316-1c4b-4281-b951-d872f2087c98
-
scottbyer@chromium.org authored
BUG=none TEST=build using the command line on Windows, piping through sed, see less extraneous output Review URL: http://codereview.chromium.org/9423018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124754 0039d316-1c4b-4281-b951-d872f2087c98
-