summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/about_conflicts.html
Commit message (Collapse)AuthorAgeFilesLines
* Consolidate content-security-policy markup for chrome:// pages into a single ↵tsepez@chromium.org2011-07-191-3/+1
| | | | | | | | file, and have grit preprocess it into all the places it belongs. Also add to resource bundle so that the about handler can return the same thing. Review URL: http://codereview.chromium.org/7396026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93052 0039d316-1c4b-4281-b951-d872f2087c98
* Apply CSP to about:conflicts page.tsepez@chromium.org2011-07-141-62/+8
| | | | | | Review URL: http://codereview.chromium.org/7277010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92596 0039d316-1c4b-4281-b951-d872f2087c98
* Adding a "Loading, please wait" message to about:conflicts.finnur@chromium.org2011-04-141-2/+4
| | | | | | | | BUG=None TEST=Type in about:conflicts, you should briefly see a "please wait" message appear and then disappear when the module list has been compiled. Review URL: http://codereview.chromium.org/6850013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81599 0039d316-1c4b-4281-b951-d872f2087c98
* WebUI: Fix the remaining references to dom_ui. Final Patch.tfarina@chromium.org2011-02-231-1/+1
| | | | | | | | | BUG=59945, 59946 TEST=trybots Review URL: http://codereview.chromium.org/6555001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75716 0039d316-1c4b-4281-b951-d872f2087c98
* Polish about:conflicts a bit as requested by Clem/UI review.finnur@chromium.org2011-01-071-4/+16
| | | | | | | | | | | | | Add column header for data. Move the Learn more link to appear last. BUG=51105 TEST=None Review URL: http://codereview.chromium.org/5981012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70727 0039d316-1c4b-4281-b951-d872f2087c98
* Integrate about:conflicts with --diagnosticsfinnur@chromium.org2011-01-061-39/+39
| | | | | | | | | | | | | | | | | This should enable the user to find conflicting dlls that are crashing Chrome on startup. This changelist introduces a limited_mode for scanning, since the diagnostics tests run without the help of many Chrome services, so we can't use the File thread for asynchronous scanning or the notification system. Also changed the scanning so that if no signature/description is given in the blacklist, then we mark the DLL as a confirmed match if the name and the location match (before we used to match it as a 'suspected' match). A very sizable chunk of the blacklist is malware, which has no signature, so this gives us the ability to trigger the wrench badge on finding malware (that part remains opt-in through about:flags). Also added failure count to diagnostics output (sometimes the error scrolls off screen, so having a note at the bottom helps). BUG=51105 TEST=All diagnostics tests run as part of the unit tests. Review URL: http://codereview.chromium.org/6098004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70600 0039d316-1c4b-4281-b951-d872f2087c98
* Remove CSS vendor prefixes where not needed.arv@chromium.org2010-12-081-1/+1
| | | | | | | | | | | | | | | | | | | The following css properties where updated. -webkit-background-size -webkit-box-sizing -webkit-border-radius -webkit-border-top-left-radius -webkit-border-top-right-radius -webkit-border-bottom-left-radius -webkit-border-bottom-right-radius BUG=None TEST=None Review URL: http://codereview.chromium.org/5672001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68637 0039d316-1c4b-4281-b951-d872f2087c98
* RTL HTML/CSS clean-up with -webkit-foo-{start,end}jshin@chromium.org2010-12-061-17/+3
| | | | | | | | | | | | | | | With -webkit-{margin,padding}-{start,end}, a lot of dir=rtl pseudo-selectors can be removed. While I'm at it, I fixed one glitch in the history page where 'text-align: right' is hard-coded instead of 'text-align: end' BUG=NONE TEST=extension/download/plugin/history and DOM UI pages are laid out as before both in LTR CHrome and RTL Chrome. Review URL: http://codereview.chromium.org/5217005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68364 0039d316-1c4b-4281-b951-d872f2087c98
* Polish the about:conflicts page.finnur@chromium.org2010-12-061-18/+38
| | | | | | | | | | | | Address review comments from Nico and add a separating line as requested by Glen. BUG=51105 TEST=None Review URL: http://codereview.chromium.org/5640001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68346 0039d316-1c4b-4281-b951-d872f2087c98
* EnumerateModules: Address UI review comments.finnur@chromium.org2010-11-291-56/+55
| | | | | | | | | | | | | | | | | | | | | | | | Make it a simple list with columns. Sort by status (conflicts at the top), then by location and module name. Also, convert the type of DLL to an enum so we can dedup the list (and for non-loaded DLLs show that they are not loaded yet, but are of type: Shell Extension / WinSock. Make sure lower bound version specified on the blacklist is inclusive (first version that broke) and the higher bound version is exclusive (first version that worked). This allows us to pointpoint exactly when the failure started and when the fix was introduced, instead of doing 0.9999 shenanigans. Specify an upper bound for the idmmbc.dll conflict, since Henry's outreach produced a fix in version 6.03 of the download manager. BUG=51105 TEST=Unit test Review URL: http://codereview.chromium.org/5278012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67598 0039d316-1c4b-4281-b951-d872f2087c98
* Use the new icons from Cole for about:conflicts.finnur@chromium.org2010-11-191-2/+2
| | | | | | | | | BUG=51105 TEST=None Review URL: http://codereview.chromium.org/5124004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66766 0039d316-1c4b-4281-b951-d872f2087c98
* Add registered shell extensions to enumerated module list on about:conflicts.finnur@chromium.org2010-11-191-5/+7
| | | | | | | | | BUG=51105 TEST=None Review URL: http://codereview.chromium.org/5092007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66756 0039d316-1c4b-4281-b951-d872f2087c98
* First cut of the about:conflicts page, listing all DLLs loaded in the Chrome ↵finnur@chromium.org2010-11-081-0/+292
process. BUG=http://crbug.com/51105, http://crbug.com/57239 TEST=Unit tests included. Review URL: http://codereview.chromium.org/4524002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65366 0039d316-1c4b-4281-b951-d872f2087c98