diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 16:08:09 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 16:08:09 +0000 |
commit | d8921c432923fd6bdbbc176110258c2e3416eaa7 (patch) | |
tree | b31e3e5cbcad38cf3ac64df613881208aa8b658c /base/native_library.h | |
parent | e75f8cb0110ea03d30c31938a1bf7ba489bebeaa (diff) | |
download | chromium_src-d8921c432923fd6bdbbc176110258c2e3416eaa7.zip chromium_src-d8921c432923fd6bdbbc176110258c2e3416eaa7.tar.gz chromium_src-d8921c432923fd6bdbbc176110258c2e3416eaa7.tar.bz2 |
Load bundle resources when loading bundles on the Mac
BUG=32208
TEST=Right-click on a QuickTime movie; a context menu should come up.
Review URL: http://codereview.chromium.org/551181
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/native_library.h')
-rw-r--r-- | base/native_library.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/native_library.h b/base/native_library.h index 182b3ed..c37e3a4 100644 --- a/base/native_library.h +++ b/base/native_library.h @@ -38,6 +38,7 @@ enum NativeLibraryType { }; struct NativeLibraryStruct { NativeLibraryType type; + CFBundleRefNum bundle_resource_ref; union { CFBundleRef bundle; void* dylib; |