OLD | NEW |
---|---|
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This .order file defines the order that symbols should be laid out in the | 5 # This .order file defines the order that symbols should be laid out in the |
6 # Mac framework. The framework does not contain many global text symbols, and | 6 # Mac framework. The framework does not contain many global text symbols, and |
7 # in release mode, does not contain any non-global text symbols after being | 7 # in release mode, does not contain any non-global text symbols after being |
8 # stripped. In order to avoid symbolization of stripped binaries from showing | 8 # stripped. In order to avoid symbolization of stripped binaries from showing |
9 # confusing offsets from the few public symbols that are available, an | 9 # confusing offsets from the few public symbols that are available, an |
10 # easily-recognized symbol, _ChromeMain, is placed last among global text | 10 # easily-recognized symbol, _ChromeMain, is placed last among global text |
11 # symbols. | 11 # symbols. |
12 # | 12 # |
13 # Not all symbols will appear in all build types. Varying optimizations may | 13 # Not all symbols will appear in all build types. Varying optimizations may |
14 # result in differences between the set of symbols present in debug and | 14 # result in differences between the set of symbols present in debug and |
15 # release modes. When Breakpad is in use, _catch_exception_raise will be | 15 # release modes. When Breakpad is in use, _catch_exception_raise will be |
16 # present, but it will not appear in non-Breakpad-enabled builds. It is not | 16 # present, but it will not appear in non-Breakpad-enabled builds. It is not |
17 # an error to list symbols in this file that will not be present in each | 17 # an error to list symbols in this file that will not be present in each |
18 # output variant. | 18 # output variant. |
19 | 19 |
20 _NP_GetEntryPoints | 20 _NP_GetEntryPoints |
21 _NP_GetMIMEDescription | 21 _NP_GetMIMEDescription |
22 _NP_GetValue | 22 _NP_GetValue |
23 _NP_Initialize | 23 _NP_Initialize |
24 _NP_Shutdown | 24 _NP_Shutdown |
25 __CTFontManagerUnregisterFontForData | |
jeremy
2011/08/18 07:58:35
Can you add a comment here pointing back to the bu
| |
25 __ZN22mac_plugin_interposing21SwitchToPluginProcessEv | 26 __ZN22mac_plugin_interposing21SwitchToPluginProcessEv |
26 __ZN22mac_plugin_interposing17GetActiveDelegateEv | 27 __ZN22mac_plugin_interposing17GetActiveDelegateEv |
27 __ZN22mac_plugin_interposing33NotifyBrowserOfPluginSelectWindowEj6CGRectb | 28 __ZN22mac_plugin_interposing33NotifyBrowserOfPluginSelectWindowEj6CGRectb |
28 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginShowWindowEj6CGRectb | 29 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginShowWindowEj6CGRectb |
29 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginHideWindowEj6CGRect | 30 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginHideWindowEj6CGRect |
30 __ZN22mac_plugin_interposing28NotifyPluginOfSetThemeCursorEPvm | 31 __ZN22mac_plugin_interposing28NotifyPluginOfSetThemeCursorEPvm |
31 __ZN22mac_plugin_interposing23NotifyPluginOfSetCursorEPvPK6Cursor | 32 __ZN22mac_plugin_interposing23NotifyPluginOfSetCursorEPvPK6Cursor |
32 __ZN22mac_plugin_interposing23GetPluginWindowHasFocusEPv | 33 __ZN22mac_plugin_interposing23GetPluginWindowHasFocusEPv |
33 __ZN6webkit5npapi25CarbonPluginWindowTrackerC1Ev | 34 __ZN6webkit5npapi25CarbonPluginWindowTrackerC1Ev |
34 __ZN6webkit5npapi25CarbonPluginWindowTrackerC2Ev | 35 __ZN6webkit5npapi25CarbonPluginWindowTrackerC2Ev |
(...skipping 29 matching lines...) Expand all Loading... | |
64 | 65 |
65 # Written in asm as a .globl. (Is that necessary?) | 66 # Written in asm as a .globl. (Is that necessary?) |
66 _NaClSwitch | 67 _NaClSwitch |
67 _NaClSyscallSeg | 68 _NaClSyscallSeg |
68 | 69 |
69 # Entry point from the app mode loader. | 70 # Entry point from the app mode loader. |
70 _ChromeAppModeStart | 71 _ChromeAppModeStart |
71 | 72 |
72 # _ChromeMain must be listed last. That's the whole point of this file. | 73 # _ChromeMain must be listed last. That's the whole point of this file. |
73 _ChromeMain | 74 _ChromeMain |
OLD | NEW |