summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-22 16:47:54 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-22 16:47:54 +0000
commit3466f7dc1725b6275933164b4807c7caecd58106 (patch)
tree83492292a92959d38bbf7b965451cc559516f4b8 /build
parentd73053211c5db825ad997b7900e69b2dd05f8b0c (diff)
downloadchromium_src-3466f7dc1725b6275933164b4807c7caecd58106.zip
chromium_src-3466f7dc1725b6275933164b4807c7caecd58106.tar.gz
chromium_src-3466f7dc1725b6275933164b4807c7caecd58106.tar.bz2
Add a custom subclass of GTMUILocalizer that skips the bundle work so we can directly use these from nib files without some extra overhead.
Updated the generator to make things based off this subclass. TEST=none BUG=16764 Review URL: http://codereview.chromium.org/159197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21280 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-xbuild/mac/generate_localizer8
1 files changed, 3 insertions, 5 deletions
diff --git a/build/mac/generate_localizer b/build/mac/generate_localizer
index 4620b99..28f7658 100755
--- a/build/mac/generate_localizer
+++ b/build/mac/generate_localizer
@@ -27,13 +27,12 @@ localizer_template_h = \
#ifndef %(class_name)s_LOCALIZER_H_
#define %(class_name)s_LOCALIZER_H_
-#import "third_party/GTM/AppKit/GTMUILocalizer.h"
+#import "chrome/browser/cocoa/ui_localizer.h"
-// A subclass of GTMUILocalizer that handles localizes based on resource
+// A subclass of ChromeUILocalizer that handles localization based on resource
// constants.
-@interface %(class_name)sLocalizer : GTMUILocalizer {
-}
+@interface %(class_name)sLocalizer : ChromeUILocalizer
@end
#endif // %(class_name)s_LOCALIZER_H_
@@ -49,7 +48,6 @@ localizer_template_mm = \
#import "%(header_name)s"
-#import "chrome/browser/cocoa/ui_localizer.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"