diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 21:09:40 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 21:09:40 +0000 |
commit | 12e72402fa74824690a54a81d643f3658e32b963 (patch) | |
tree | 1e1e448278196e4e04038721ab02ee41ae0f4bc2 /webkit/glue | |
parent | 3c852baf496021a0b9e03d24aa85dfa6fc1c4570 (diff) | |
download | chromium_src-12e72402fa74824690a54a81d643f3658e32b963.zip chromium_src-12e72402fa74824690a54a81d643f3658e32b963.tar.gz chromium_src-12e72402fa74824690a54a81d643f3658e32b963.tar.bz2 |
mac: Make components build work in 64bit mode.
- CoreAnimation moved from Cocoa to QuartzCore
- symbol visibility now applies to ObjC interfaces, so
many of these need _EXPORT annotations
- private ivars are now always hidden symbols, so categories
in one module can't access private ivars of interfaces from another
module (the only instance of this was ui_localizer.mm, the fix was
to make the IBOutlet ivars of a class in GTM @protected instead).
- to not require _EXPORT annotations in GTM (which is third-party code),
build the GTM files without -fvisibility=hidden when doing a components
build.
BUG=190508
TBR=avi,tony
Review URL: https://codereview.chromium.org/13507002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192155 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webmenurunner_mac.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/glue/webmenurunner_mac.h b/webkit/glue/webmenurunner_mac.h index 755c2a1..f722b1e 100644 --- a/webkit/glue/webmenurunner_mac.h +++ b/webkit/glue/webmenurunner_mac.h @@ -10,6 +10,7 @@ #include <vector> #include "base/memory/scoped_nsobject.h" +#include "webkit/glue/webkit_glue_export.h" #include "webkit/glue/webmenuitem.h" @@ -19,6 +20,7 @@ // item is selected, MenuDelegate is informed and sets a flag which can be // queried after the menu has finished running. +WEBKIT_GLUE_EXPORT @interface WebMenuRunner : NSObject { @private // The native menu control. |