summaryrefslogtreecommitdiffstats
path: root/ui/base/l10n
Commit message (Collapse)AuthorAgeFilesLines
* Normalize font size when in high-DPI mode.kevers@chromium.org2013-03-113-12/+74
| | | | | | | | | BUG=179881 Review URL: https://chromiumcodereview.appspot.com/12391069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187403 0039d316-1c4b-4281-b951-d872f2087c98
* src/: Update the remaining include paths of string_split.h to its new location.tfarina@chromium.org2013-03-061-2/+2
| | | | | | | | | | BUG=175186 TBR=brettw@chromium.org Review URL: https://chromiumcodereview.appspot.com/12473004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186462 0039d316-1c4b-4281-b951-d872f2087c98
* Replace FilePath with base::FilePath in some more top level directories.brettw@chromium.org2013-02-101-2/+2
| | | | | | Review URL: https://codereview.chromium.org/12217101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181640 0039d316-1c4b-4281-b951-d872f2087c98
* Roll ICU and convert include style to standard Chromium style,phajdan.jr@chromium.org2013-01-073-4/+4
| | | | | | | | | | i.e. third_party/... BUG=165264 Review URL: https://codereview.chromium.org/11734021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175399 0039d316-1c4b-4281-b951-d872f2087c98
* [Android WebView] Fix some locale related TODOs.benm@chromium.org2012-12-211-4/+1
| | | | | | | | | | | | | | | | | | | | Implement AwContentBrowserClient::GetAcceptLangs as the classic WebView did - use the current local for the primary accept language and append en-US as an alternative if the primary language was something else. Use UTF-8 as the default accept charset. As far as I can tell AwContentBrowserClient::GetCanonicalEncodingNameByAliasName should simply echo the passed in string - we shouldn't get passed anything other than a canonical encoding name in android_webview/. Move the mapping of Android deprecated language codes from l10n_util.cc into base/android/java/.../LocaleUtils.java to make that logic easier to reuse by android_webview. Review URL: https://chromiumcodereview.appspot.com/11614002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174385 0039d316-1c4b-4281-b951-d872f2087c98
* Fix text direction markup for locale name.kevers@chromium.org2012-11-092-2/+50
| | | | | | | | | BUG=94070 Review URL: https://chromiumcodereview.appspot.com/11362033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166927 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream Android tweaks in chrome_browser_main.cc.newt@chromium.org2012-10-202-14/+15
| | | | | | | | | BUG=155686 Review URL: https://chromiumcodereview.appspot.com/11186062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163124 0039d316-1c4b-4281-b951-d872f2087c98
* Update all unit tests that override paths to use the ScopedPathOverride.pastarmovj@chromium.org2012-10-091-8/+3
| | | | | | | | | | | | | This makes sure that overrides are removed when tests are over and don't pollute the global singleton state shared by all tests. BUG=149161 TEST=All unit tests should still pass. Review URL: https://chromiumcodereview.appspot.com/10947008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160855 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the failed case L10nUtilTest.GetAppLocale of ui unittests on Androidyongsheng.zhu@intel.com2012-08-071-8/+9
| | | | | | | | | | | | | | | | There are 2 kinds of issues to make it failed: 1) pak files are stored in a different directory on Android other than other platforms. 2) The setting and getting locale is different from Linux, but similar with ChromiumOS. BUG= TEST=run_tests.py -s ui_unittests Review URL: https://chromiumcodereview.appspot.com/10825007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150261 0039d316-1c4b-4281-b951-d872f2087c98
* Update handling of Android language codescjhopman@chromium.org2012-08-061-4/+6
| | | | | | | | | | | | | | Chrome uses "id" as the Indonesian language code while Android uses the deprecated code "in". Similarly for Yiddish. This handles translating between the two. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10701179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150115 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the rest of #pragma once in one big CL.ajwong@chromium.org2012-07-115-5/+0
| | | | | | | | | For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98
* Add new ResourceBundle::Delegate interface.marshall@chromium.org2012-05-091-4/+1
| | | | | | | | | BUG=125351 TEST=ResourceBundle.* Review URL: https://chromiumcodereview.appspot.com/10270023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136039 0039d316-1c4b-4281-b951-d872f2087c98
* Reapply "Changes according to review comments"wangxianzhu@chromium.org2012-05-053-11/+57
| | | | | | | | | | | | | | | | | Fixed an "unused variable" issue of the original CL (http://codereview.chromium.org/10224004/). Use Android API for GetDisplayNameForLocale(). Using Android API, we can reduce the data size of ICU and thus reduce the binary size of chromium-android. BUG=none TEST=L10nUtilTest.GetDisplayNameForLocale,L10nUtilTest.GetDisplayNameForCountry TBR=jrg@chromium.org,isherman@chromium.org,mark@chromium.org,jshin@chromium.org,rvargas@chromium.org Review URL: http://codereview.chromium.org/10310029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135524 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 135484 - Use Android API for GetDisplayNameForLocale().rvargas@google.com2012-05-043-61/+13
| | | | | | | | | | | | | | | | | | | failure: http://build.chromium.org/p/chromium.chromiumos/builders/ChromiumOS%20%28x86%29/builds/4835/steps/BuildTarget/logs/stdio Using Android API, we can reduce the data size of ICU and thus reduce the binary size of chromium-android. BUG=none TEST=L10nUtilTest.GetDisplayNameForLocale,L10nUtilTest.GetDisplayNameForCountry TBR=sky Review URL: http://codereview.chromium.org/10224004 TBR=wangxianzhu@chromium.org Review URL: https://chromiumcodereview.appspot.com/10380018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135490 0039d316-1c4b-4281-b951-d872f2087c98
* Use Android API for GetDisplayNameForLocale().wangxianzhu@chromium.org2012-05-043-13/+61
| | | | | | | | | | | | | Using Android API, we can reduce the data size of ICU and thus reduce the binary size of chromium-android. BUG=none TEST=L10nUtilTest.GetDisplayNameForLocale,L10nUtilTest.GetDisplayNameForCountry TBR=sky Review URL: http://codereview.chromium.org/10224004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135484 0039d316-1c4b-4281-b951-d872f2087c98
* Add Jungshik into ui/base/l10n/OWNERStony@chromium.org2012-05-041-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10365019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135411 0039d316-1c4b-4281-b951-d872f2087c98
* Aura/ash split: Hopefully get linux_aura green trybot.erg@chromium.org2012-04-061-3/+4
| | | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/10008023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131153 0039d316-1c4b-4281-b951-d872f2087c98
* Web Intents: Use action-specific strings for the picker.jhawkins@chromium.org2012-04-041-0/+1
| | | | | | | | | | | | Cocoa bits done by groby. BUG=113453 TEST=none R=binji Review URL: https://chromiumcodereview.appspot.com/9956136 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130760 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Compile error with "-Duse_aura=1".junmin.zhu@intel.com2012-02-191-1/+1
| | | | | | | | | | BUG=114778 TEST=Compile chromium with "-Duse_aura=1" Review URL: http://codereview.chromium.org/9423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122699 0039d316-1c4b-4281-b951-d872f2087c98
* Change include for g_get_language_names from glib/gutils.h to glib.h.tony@chromium.org2012-02-092-6/+7
| | | | | | | | | | | | | | | The function moved headers in newer glibs. Also fix up the #ifs to be more focused. Remove ui/base/OWNERS since it's identical to ui/OWNERS. Add ui/base/l10n/OWNERS and put myself in it. BUG=None Review URL: http://codereview.chromium.org/9360031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121141 0039d316-1c4b-4281-b951-d872f2087c98
* Transition to base/mac/bundle_locations.h step 3jeremy@chromium.org2012-01-251-2/+3
| | | | | | | | | | | | Convert some instances of [NSBundle mainBundle] to equivalent calls in base/mac/bundle_locations.h BUG=None TEST=Code should compile and all unit tests should pass. Review URL: http://codereview.chromium.org/9240004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119030 0039d316-1c4b-4281-b951-d872f2087c98
* ake string_util::WriteInto() DCHECK() that the supplied |length_with_null| > ↵pkasting@chromium.org2011-11-291-2/+2
| | | | | | | | | | | | 1, meaning that the without-'\0' string is non-empty. This replaces the conditional code added recently that makes this case return NULL. It's easier to understand if it's simply an error to call WriteInto() in this case at all. Add DCHECK()s or conditionals as appropriate to callers in order to ensure this assertion holds. BUG=none TEST=none Review URL: http://codereview.chromium.org/8418034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112005 0039d316-1c4b-4281-b951-d872f2087c98
* Allow linker initialization of lazy instancejoth@chromium.org2011-11-152-3/+3
| | | | | | | | | | | | | | Using the initializer list construct = {0} allows the object to be linker initialized. Modify the LazyInstance class design to make it a pod aggregate type that can be linker initialized this way. Also combines the instance and state members, in line with the Singleton<> class design. Introduces a new LAZY_INSTANCE_INITIALIZER macro specifically for using to init all lazy instances + modify all existing callsites to use it. (Old code would no longer compile) BUG=94925 TEST=existing tests pass. http://build.chromium.org/f/chromium/perf/linux-release/sizes/report.html?history=150&header=chrome-si&graph=chrome-si&rev=-1 should step downward. TBR=jam@chromium.org,rvargas@chromium.org,darin@chromium.org,ben@chromium.org,apatrick@chromium.org,akalin@chromium.org Review URL: http://codereview.chromium.org/8491043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110076 0039d316-1c4b-4281-b951-d872f2087c98
* Copy WebKit's DEFINE_STATIC_LOCAL to base/basictypes.hthakis@chromium.org2011-11-051-3/+1
| | | | | | | | | | | | Use it to remove 3 exit time destructors and 1 static initializer. BUG=101600,94925 TEST=none Review URL: http://codereview.chromium.org/8474010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108765 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the remaining 6 exit time destructors and 2 static initializers from ui/thakis@chromium.org2011-11-041-1/+3
| | | | | | | | | | BUG=101600,94925 TEST=none Review URL: http://codereview.chromium.org/8475006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108688 0039d316-1c4b-4281-b951-d872f2087c98
* Enable Kannada, Farsi and Telugu on CrOSjshin@chromium.org2011-10-171-3/+2
| | | | | | | | BUG=chromium-os:21717 TEST=On login screen, Kannada, Telugu and Farsi can be selected. Review URL: http://codereview.chromium.org/8301012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105835 0039d316-1c4b-4281-b951-d872f2087c98
* Reuse base::i18n::SetICUDefaultLocale from rtl.h in some unittests.tfarina@chromium.org2011-10-071-25/+19
| | | | | | | | | | | This removes duplicated versions of SetICUDefaultLocale() defined in unittests. TEST=base_unittests,ui_unittests R=phajdan.jr@chromium.org Review URL: http://codereview.chromium.org/8139034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104550 0039d316-1c4b-4281-b951-d872f2087c98
* Compile ui/ on Android.zhenghao@google.com2011-09-241-1/+7
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/8018011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102660 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Make 'ui' buildable without gtk.sadrul@chromium.org2011-09-211-2/+2
| | | | | | | | | BUG=97131 TEST=ui_unittests links and runs with use_aura=1 Review URL: http://codereview.chromium.org/7977025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102131 0039d316-1c4b-4281-b951-d872f2087c98
* Map en-CA, en-ZA, en-AU, en-NZ to en-GBjshin@chromium.org2011-09-202-3/+40
| | | | | | | | | | | | | en-CA is tough, but if we had to pick one, en-GB would be a tiny bit better than en-US (e.g. date format, etc). BUG=NONE TEST=unit_test --gtest_filter=*.GetAppLocale Review URL: http://codereview.chromium.org/7919029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102048 0039d316-1c4b-4281-b951-d872f2087c98
* Reuse ResourceBundle to detect locale availability.torne@chromium.org2011-09-031-17/+7
| | | | | | | | | | | | | | IsLocaleAvailable reimplements the logic for finding the resource file for a given locale and testing if it exists. Expose this in ResourceBundle instead which contains the actual resource file loading code and thus is the canonical source for how to create this path. TEST=ResourceBundle.LocaleDataPakExists Review URL: http://codereview.chromium.org/7831036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99495 0039d316-1c4b-4281-b951-d872f2087c98
* Block {am, fa, sw} and {kn, te} on CrOS and roll ICU to 98343jshin@chromium.org2011-08-261-0/+18
| | | | | | | | | | | | | | | | The former is blocked until we have translation back for them. For ChromeOS R14, we'll not have them ready. The former is blocked until we have fonts for them to use on CrOS. This change will be reverted once two issues above are resolved. See http://codereview.chromium.org/7725002/ for the ICU part that removed the CrOS-specific ICU data file. BUG=chromium-os:19465 TEST=The UI language list does not include the above 5 languages on CrOS. Review URL: http://codereview.chromium.org/7726003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98435 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 98426 - Revert 98103 - Switch to using .pak files for locale data on ↵battre@chromium.org2011-08-262-12/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows. We were using .dlls, but the .pak files are smaller and this will allow us to share more code across platforms. - Remove app/locales.gyp (used on win to generate the locale dlls) and references to it in other gyp(i) files. - Update various packaging scripts. - Move functions from resource_bundle_posix.cc to resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources, GetLocalizedString, LoadLocaleResources) and delete the corresponding functions from resource_bundle_win.cc. Fixes from previous patch: - Made dependencies of packed_resources explicit (MSVS can't figure it out from the inputs). - Removed a couple cases where we were looking for dlls on Windows (in l10n_util.cc and l10n_util_unittest.cc). BUG=92724 TBR=cpu Review URL: http://codereview.chromium.org/7714028 TBR=tony@chromium.org Review URL: http://codereview.chromium.org/7744053 TBR=battre@chromium.org Review URL: http://codereview.chromium.org/7759001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98427 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 98103 - Switch to using .pak files for locale data on Windows.battre@chromium.org2011-08-262-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were using .dlls, but the .pak files are smaller and this will allow us to share more code across platforms. - Remove app/locales.gyp (used on win to generate the locale dlls) and references to it in other gyp(i) files. - Update various packaging scripts. - Move functions from resource_bundle_posix.cc to resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources, GetLocalizedString, LoadLocaleResources) and delete the corresponding functions from resource_bundle_win.cc. Fixes from previous patch: - Made dependencies of packed_resources explicit (MSVS can't figure it out from the inputs). - Removed a couple cases where we were looking for dlls on Windows (in l10n_util.cc and l10n_util_unittest.cc). BUG=92724 TBR=cpu Review URL: http://codereview.chromium.org/7714028 TBR=tony@chromium.org Review URL: http://codereview.chromium.org/7744053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98426 0039d316-1c4b-4281-b951-d872f2087c98
* Switch to using .pak files for locale data on Windows.tony@chromium.org2011-08-242-12/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | We were using .dlls, but the .pak files are smaller and this will allow us to share more code across platforms. - Remove app/locales.gyp (used on win to generate the locale dlls) and references to it in other gyp(i) files. - Update various packaging scripts. - Move functions from resource_bundle_posix.cc to resource_bundle.cc (LoadResourcesDataPak, UnloadLocaleResources, GetLocalizedString, LoadLocaleResources) and delete the corresponding functions from resource_bundle_win.cc. Fixes from previous patch: - Made dependencies of packed_resources explicit (MSVS can't figure it out from the inputs). - Removed a couple cases where we were looking for dlls on Windows (in l10n_util.cc and l10n_util_unittest.cc). BUG=92724 TBR=cpu Review URL: http://codereview.chromium.org/7714028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98103 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Switch to using .pak files for locale data on Windows." (r97941)mattm@chromium.org2011-08-241-2/+5
| | | | | | | | | | | Revert "Fix a bug where windows can't find the locale paks." (r97951) Revert "Fix the windows build." (r97954) TBR=tony@chromium.org Review URL: http://codereview.chromium.org/7717017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97968 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the windows build.tony@chromium.org2011-08-241-1/+2
| | | | | | | | TBR=cpu Review URL: http://codereview.chromium.org/7701020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97954 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a bug where windows can't find the locale paks.tony@chromium.org2011-08-241-4/+0
| | | | | | | | TBR=cpu Review URL: http://codereview.chromium.org/7701018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97951 0039d316-1c4b-4281-b951-d872f2087c98
* content: Move render_widget_host_view_gtk to content/ try 2.erg@google.com2011-08-233-100/+0
| | | | | | | | | | | | | | | | | | | | This was r97750, which was reverted at r97756. This patch, in addition to all the other things it did, marks OwnedWidgetGtk for export and moves it to the ui:: namespace. Original list of things this patch does: - OwnedWidgetGtk now goes in ui/base/gtk/ - TruncateString moved from l10n_util:: to ui:: - GtkIMContextWrapper has part of its code split into chrome/ (IDC using code goes in RenderViewContextMenu) and the rest go in content/ (gtk using code goes with GtkIMContextWrapper). - gtk_key_bindings_handler[_unittest] now goes in content, as it's a utility class to RenderWidgetHostGtk. BUG=93804 TEST=existing unit tests Original Review URL: http://codereview.chromium.org/7669040 Review URL: http://codereview.chromium.org/7708021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97889 0039d316-1c4b-4281-b951-d872f2087c98
* (shlib failure) Revert 97750 - content: Move render_widget_host_view_gtk to ↵erg@google.com2011-08-223-0/+100
| | | | | | | | | | | | | | | | | | | | content/ This also moves some other files: - OwnedWidgetGtk now goes in ui/base/gtk/ - TruncateString moved from l10n_util:: to ui:: - GtkIMContextWrapper has part of its code split into chrome/ (IDC using code goes in RenderViewContextMenu) and the rest go in content/ (gtk using code goes with GtkIMContextWrapper). - gtk_key_bindings_handler[_unittest] now goes in content, as it's a utility class to RenderWidgetHostGtk. BUG=93804 TEST=existing unit tests Review URL: http://codereview.chromium.org/7669040 TBR=erg@google.com Review URL: http://codereview.chromium.org/7708017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97756 0039d316-1c4b-4281-b951-d872f2087c98
* content: Move render_widget_host_view_gtk to content/erg@google.com2011-08-223-100/+0
| | | | | | | | | | | | | | | This also moves some other files: - OwnedWidgetGtk now goes in ui/base/gtk/ - TruncateString moved from l10n_util:: to ui:: - GtkIMContextWrapper has part of its code split into chrome/ (IDC using code goes in RenderViewContextMenu) and the rest go in content/ (gtk using code goes with GtkIMContextWrapper). - gtk_key_bindings_handler[_unittest] now goes in content, as it's a utility class to RenderWidgetHostGtk. BUG=93804 TEST=existing unit tests Review URL: http://codereview.chromium.org/7669040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97750 0039d316-1c4b-4281-b951-d872f2087c98
* Canonicalize locale that was passed with --lang on Windows.cira@google.com2011-08-221-1/+1
| | | | | | | | TEST=Install AdBlock extension, and run with --lang=De. Popup should show German messages. BUG=59082 Review URL: http://codereview.chromium.org/7693001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97742 0039d316-1c4b-4281-b951-d872f2087c98
* Rename UI_API to UI_EXPORT.darin@chromium.org2011-08-065-116/+116
| | | | | | | R=rvargas@chromium.org Review URL: http://codereview.chromium.org/7569005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95730 0039d316-1c4b-4281-b951-d872f2087c98
* mac: Components build for ui, easy partthakis@chromium.org2011-07-291-37/+38
| | | | | | | | | | BUG=90078 TEST=none Review URL: http://codereview.chromium.org/7531019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94703 0039d316-1c4b-4281-b951-d872f2087c98
* some cleanup for base/stl_utildilmah@chromium.org2011-07-191-1/+1
| | | | | | | | | | | | | removed unused/irrelevant functions removed irrelevant comments Moved stl_util-inl.h => stl_util.h BUG=None TEST=None Review URL: http://codereview.chromium.org/7342047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93110 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce ui.dll / libui.so for the component build.darin@chromium.org2011-07-174-77/+84
| | | | | | | R=ben@chromium.org Review URL: http://codereview.chromium.org/7328011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92819 0039d316-1c4b-4281-b951-d872f2087c98
* Add flag to enable Autofill prompt for additional user feedback.isherman@chromium.org2011-07-021-1/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/7273088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91399 0039d316-1c4b-4281-b951-d872f2087c98
* Add a debugging flag to annotate web forms with their Autofill field type ↵isherman@chromium.org2011-06-202-1/+22
| | | | | | | | | | | | | predictions. BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=89716 Review URL: http://codereview.chromium.org/7187029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89745 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 89716 - Add a debugging flag to annotate web forms with their ↵isherman@chromium.org2011-06-202-22/+1
| | | | | | | | | | | | | | Autofill field type predictions. BUG=none TEST=none Review URL: http://codereview.chromium.org/7187029 TBR=isherman@chromium.org Review URL: http://codereview.chromium.org/7204037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89720 0039d316-1c4b-4281-b951-d872f2087c98
* Add a debugging flag to annotate web forms with their Autofill field type ↵isherman@chromium.org2011-06-202-1/+22
| | | | | | | | | | | predictions. BUG=none TEST=none Review URL: http://codereview.chromium.org/7187029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89716 0039d316-1c4b-4281-b951-d872f2087c98