summaryrefslogtreecommitdiffstats
path: root/chrome/browser/feedback
Commit message (Collapse)AuthorAgeFilesLines
* Move URLFetcherDelegate to net/ and split URLFetcher between net/ and content/akalin@chromium.org2012-05-111-2/+2
| | | | | | | | | | | | | | | | | | | | | Temporarily make a shim content::URLFetcherDelegate class. A future CL will replace all instances of content::URLFetcherDelegate with net::URLFetcherDelegate and remove that class. Move most URLFetcher methods to net::URLFetcher, except for the static methods (which will be handled in a future CL) and AssociateWithRenderView, which is content-specific. Replace all instances of content::URLFetcher* in the URLFetcherDelegate callbacks with net::URLFetcher* (except for rlz, which required its own special hack). BUG=118220 TEST= TBR=mnissler@chromium.org,jhawkins@chromium.org,cpu@chromium.org,estade@chromium.org,sky@chromium.org,joth@chromium.org,satish@chromium.org Review URL: https://chromiumcodereview.appspot.com/10386063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136514 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: IWYU for BrowserProcess.thestig@chromium.org2012-05-081-0/+1
| | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10258009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135774 0039d316-1c4b-4281-b951-d872f2087c98
* Disable storing cookies from URLFetchers that run with a profile's cookie jar.jochen@chromium.org2012-02-291-1/+2
| | | | | | | | | BUG=116253 TEST=none Review URL: https://chromiumcodereview.appspot.com/9545005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124282 0039d316-1c4b-4281-b951-d872f2087c98
* Include a timestamp with and add a keyboard shortcut for Feedback.rkc@chromium.org2012-01-314-11/+24
| | | | | | | | | | | | | | Everytime a user clicks on the Feedback menu item or presses ctrl+alt+i on ChromeOS, record the exact time of that happening and send it in the feedback report the user submits. R=zelidrag@chromium.org,adlr@chromium.org BUG=chromium-os:25678 TEST=Tested with sending several reports invoked both by the shortcut and the menu item. Review URL: http://codereview.chromium.org/9104030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119971 0039d316-1c4b-4281-b951-d872f2087c98
* Convert use of int ms to TimeDelta in files owned by brettw.tedvessenes@gmail.com2012-01-271-2/+4
| | | | | | | | | | BUG=108171 TEST= Review URL: http://codereview.chromium.org/9233018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119321 0039d316-1c4b-4281-b951-d872f2087c98
* Fix license headers in chrome/browser/feedback/protosteveblock@chromium.org2012-01-238-22/+30
| | | | | | | | | | It looks like these were added with the wrong license header in http://codereview.chromium.org/2068004. Review URL: http://codereview.chromium.org/9235009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118719 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of SavePackage usage in Chrome. I've moved IsSavableContents onto ↵jam@chromium.org2012-01-201-0/+1
| | | | | | | | | WebContents itself, IsSavableURL to a file in chrome, and made Chrome's DownloadManagerDelegate give SavePackage the file path through a callback. BUG=98716 Review URL: https://chromiumcodereview.appspot.com/9254051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118452 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 117824 - Convert use of int ms to TimeDelta in files owned by brettw.hbono@chromium.org2012-01-161-4/+2
| | | | | | | | | | | | | | | | | | | | This change broke Linux and Mac bots. I would recommend to ask committers to run your next change on trybots. (*1) http://chromegw.corp.google.com/i/chromium/builders/Mac/builds/10788/steps/compile/logs/stdio (*2) http://chromegw.corp.google.com/i/chromium/builders/Linux/builds/19313/steps/compile/logs/stdio (*3) http://chromegw.corp.google.com/i/chromium/builders/Linux%20x64/builds/21385/steps/compile/logs/stdio R=brettw@chromium.org BUG=108171 TEST= Review URL: http://codereview.chromium.org/9185026 TBR=tedvessenes@gmail.com Review URL: http://codereview.chromium.org/9215005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117825 0039d316-1c4b-4281-b951-d872f2087c98
* Convert use of int ms to TimeDelta in files owned by brettw.tedvessenes@gmail.com2012-01-161-2/+4
| | | | | | | | | | | R=brettw@chromium.org BUG=108171 TEST= Review URL: http://codereview.chromium.org/9185026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117824 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor and fix feedbackrkc@chromium.org2012-01-0612-0/+1272
This CL does the following things, .) Removes user-facing categories from the UI completely. .) Changes categories that are still used (Autofill for example) use category tags instead of the category enum (which has been deprecated) .) Updates the protocol buffers .) Refactors the code to change bug report to feedback and re-organizes the file naming/layout .) Cleans up the unused feedback strings, files and code .) Cleans up the code at a few places .) Makes a few UI changes to get closer to the mock given in chromium:98738 This seems like a really huge CL but in reality it just just a couple of hundred lines of 'code' changes; a lot of this is just code being deleted BUG=chromium:98738 TEST=Tested sending reports. Review URL: http://codereview.chromium.org/9006003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116598 0039d316-1c4b-4281-b951-d872f2087c98