summaryrefslogtreecommitdiffstats
path: root/chrome/test/functional
diff options
context:
space:
mode:
authorrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 00:30:34 +0000
committerrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 00:30:34 +0000
commitdaa9e38f3afbc3f048a47c4239f6e75a53fe7be3 (patch)
tree4566ff42f9307c8cc141b31e629f0af523d5778b /chrome/test/functional
parent1091f7dd71ef9394d24fbd49da35509d18b60c04 (diff)
downloadchromium_src-daa9e38f3afbc3f048a47c4239f6e75a53fe7be3.zip
chromium_src-daa9e38f3afbc3f048a47c4239f6e75a53fe7be3.tar.gz
chromium_src-daa9e38f3afbc3f048a47c4239f6e75a53fe7be3.tar.bz2
Refactor and fix feedback
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
Diffstat (limited to 'chrome/test/functional')
-rwxr-xr-xchrome/test/functional/special_tabs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/functional/special_tabs.py b/chrome/test/functional/special_tabs.py
index d6e38a9..01963e8 100755
--- a/chrome/test/functional/special_tabs.py
+++ b/chrome/test/functional/special_tabs.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -44,8 +44,8 @@ class SpecialTabsTest(pyauto.PyUITest):
'chrome://about': { 'title': 'Chrome URLs' },
'chrome://appcache-internals': { 'title': 'AppCache Internals' },
'chrome://blob-internals': { 'title': 'Blob Storage Internals' },
- 'chrome://bugreport': {},
- 'chrome://bugreport/#0': { 'title': 'Feedback' },
+ 'chrome://feedback': {},
+ 'chrome://feedback/#0': { 'title': 'Feedback' },
'chrome://chrome-urls': { 'title': 'Chrome URLs' },
'chrome://crashes': { 'title': 'Crashes' },
'chrome://credits': { 'title': 'Credits', 'CSP': False },