- 03 Mar, 2012 24 commits
-
-
cduvall@chromium.org authored
Made the parentId argument for bookmarks.create() optional. The default is the "Other Bookmarks" folder. BUG=21410 TEST=Some of the bookmarks tests have been reported as flaky, so you will need to change "DISABLED_Bookmarks" to "Bookmarks" in chrome/browser/bookmarks/bookmark_extension_apitest.cc to run my test. My test is called createNoParentId. Review URL: http://codereview.chromium.org/9420041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124812 0039d316-1c4b-4281-b951-d872f2087c98
-
michaelbai@chromium.org authored
It is used to support the Android Bookmark Provider; It caches the favicon id, visit time, created time, bookmark information from thumbnail database, url database and BookmarkModel. The database is created in first access of AndroidProviderBackend, and deleted after history backend shutdown, synced before AndroidProviderBackend's Query, Insert, Update or Delete method called. BUG= TEST= Review URL: http://codereview.chromium.org/9549031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124811 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=114808 Review URL: http://codereview.chromium.org/9545010 TBR=sergeyu@chromium.org Review URL: https://chromiumcodereview.appspot.com/9585033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124809 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8598030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124808 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Fixes compile errors and marks failing tests as FAILED to get bots green. Will tackle proper fixes to tests in follow-on CLs. BUG=None TEST=ShellTest.FAILS_OverlappingWindowModeBasics, CompactLayoutManagerTest.FAILS_TransitionTest, RootWindowEventFilterTest.FAILS_TransformActivate, ToplevelWindowEventFilterTest.FAILS_EscapeReverts R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/9585028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124807 0039d316-1c4b-4281-b951-d872f2087c98
-
jennb@chromium.org authored
Only PanelManager adds/removes panels from panel strips. Only exception is in tests. BUG=None TEST=Existing tests. Review URL: http://codereview.chromium.org/9560002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124806 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
Current unit test use locally defined kCloseCodeNormalClosure as a close code. Now, PPB_WebSocket provide API defined status codes. The test must use PP_WEBSOCKETSTATUSCODE_NORMAL_CLOSURE instead of kCloseCodeNormalClosure. BUG=87310 TEST=ui_tests --gtest_filter='PPAPI*Test.WebSocket*' Review URL: http://codereview.chromium.org/9586015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124805 0039d316-1c4b-4281-b951-d872f2087c98
-
palmer@chromium.org authored
Previously, SSLInfo was given the cert chain as served by the server. It is more useful and correct to provide higher layers the cert chain as validated. BUG=77757, 87303, 115312 TEST=net_unittests SSLClientSocketTest.VerifyReturnChainProperlyOrdered Review URL: http://codereview.chromium.org/9442001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124804 0039d316-1c4b-4281-b951-d872f2087c98
-
fischman@chromium.org authored
Review URL: http://codereview.chromium.org/9545008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124803 0039d316-1c4b-4281-b951-d872f2087c98
-
keybuk@chromium.org authored
We support USB Bluetooth adapters being inserted and removed from our older Chromebooks, so as well as showing the Bluetooth settings on insertion we need a function to hide the settings pane again when the adapter is pulled out. BUG=chromium-os:27103 TEST=(with plumbing from later CL) removed adapter, verified the settings section vanished Change-Id: I1e820e4f660787e4f74c28761114459fc29352c5 Review URL: http://codereview.chromium.org/9568054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124802 0039d316-1c4b-4281-b951-d872f2087c98
-
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 16 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
-