| 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 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 _NP_Initialize | 23 _NP_Initialize |
| 24 _NP_Shutdown | 24 _NP_Shutdown |
| 25 __CTFontManagerUnregisterFontForData | 25 __CTFontManagerUnregisterFontForData |
| 26 __ZN22mac_plugin_interposing21SwitchToPluginProcessEv | 26 __ZN22mac_plugin_interposing21SwitchToPluginProcessEv |
| 27 __ZN22mac_plugin_interposing17GetActiveDelegateEv | 27 __ZN22mac_plugin_interposing17GetActiveDelegateEv |
| 28 __ZN22mac_plugin_interposing33NotifyBrowserOfPluginSelectWindowEj6CGRectb | 28 __ZN22mac_plugin_interposing33NotifyBrowserOfPluginSelectWindowEj6CGRectb |
| 29 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginShowWindowEj6CGRectb | 29 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginShowWindowEj6CGRectb |
| 30 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginHideWindowEj6CGRect | 30 __ZN22mac_plugin_interposing31NotifyBrowserOfPluginHideWindowEj6CGRect |
| 31 __ZN22mac_plugin_interposing28NotifyPluginOfSetThemeCursorEPvm | 31 __ZN22mac_plugin_interposing28NotifyPluginOfSetThemeCursorEPvm |
| 32 __ZN22mac_plugin_interposing23NotifyPluginOfSetCursorEPvPK6Cursor | 32 __ZN22mac_plugin_interposing23NotifyPluginOfSetCursorEPvPK6Cursor |
| 33 __ZN22mac_plugin_interposing23GetPluginWindowHasFocusEPv | |
| 34 __ZN6webkit5npapi25CarbonPluginWindowTrackerC1Ev | |
| 35 __ZN6webkit5npapi25CarbonPluginWindowTrackerC2Ev | |
| 36 __ZN6webkit5npapi25CarbonPluginWindowTrackerD1Ev | |
| 37 __ZN6webkit5npapi25CarbonPluginWindowTrackerD2Ev | |
| 38 __ZN6webkit5npapi25CarbonPluginWindowTracker14SharedInstanceEv | |
| 39 __ZN6webkit5npapi25CarbonPluginWindowTracker28CreateDummyWindowForDelegateEPv | |
| 40 __ZNK6webkit5npapi25CarbonPluginWindowTracker25GetDelegateForDummyWindowEP15Opaq
ueWindowPtr | |
| 41 __ZNK6webkit5npapi25CarbonPluginWindowTracker25GetDummyWindowForDelegateEPv | |
| 42 __ZN6webkit5npapi25CarbonPluginWindowTracker29DestroyDummyWindowForDelegateEPvP1
5OpaqueWindowPtr | |
| 43 __ZN7WebCore22narrowPrecisionToFloatIdEEfT_ | 33 __ZN7WebCore22narrowPrecisionToFloatIdEEfT_ |
| 44 __ZN7WebCore24narrowPrecisionToCGFloatIdEEfT_ | 34 __ZN7WebCore24narrowPrecisionToCGFloatIdEEfT_ |
| 45 __ZnwmPv | 35 __ZnwmPv |
| 46 __ZdlPvS_ | 36 __ZdlPvS_ |
| 47 _catch_exception_raise | 37 _catch_exception_raise |
| 48 | 38 |
| 49 # List the gcov symbols so the code coverage bot doesn't trip up in | 39 # List the gcov symbols so the code coverage bot doesn't trip up in |
| 50 # the verify_order post build step. | 40 # the verify_order post build step. |
| 51 ___gcov_init | 41 ___gcov_init |
| 52 ___gcov_seek | 42 ___gcov_seek |
| (...skipping 12 matching lines...) Expand all Loading... |
| 65 | 55 |
| 66 # Written in asm as a .globl. (Is that necessary?) | 56 # Written in asm as a .globl. (Is that necessary?) |
| 67 _NaClSwitch | 57 _NaClSwitch |
| 68 _NaClSyscallSeg | 58 _NaClSyscallSeg |
| 69 | 59 |
| 70 # Entry point from the app mode loader. | 60 # Entry point from the app mode loader. |
| 71 _ChromeAppModeStart | 61 _ChromeAppModeStart |
| 72 | 62 |
| 73 # _ChromeMain must be listed last. That's the whole point of this file. | 63 # _ChromeMain must be listed last. That's the whole point of this file. |
| 74 _ChromeMain | 64 _ChromeMain |
| OLD | NEW |