Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(697)

Side by Side Diff: chrome/app/framework.order

Issue 2658723007: Hook up allocator shim on mac. (Closed)
Patch Set: Rebase. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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. It is not an error to list symbols in this file that will not 15 # release modes. It is not an error to list symbols in this file that will not
16 # be present in each output variant. 16 # be present in each output variant.
17 17
18 # Overrides for C++ new/delete operators used by base/allocator.
Primiano Tucci (use gerrit) 2017/01/28 05:10:03 see my comment above about overriding c++ symbols
erikchen 2017/01/31 02:21:22 Done.
19 __Znwm
20 __ZdlPv
21 __Znam
22 __ZdaPv
23 __ZnwmRKSt9nothrow_t
24 __ZnamRKSt9nothrow_t
25 __ZdlPvRKSt9nothrow_t
26 __ZdaPvRKSt9nothrow_t
27
18 # Provided by build/sanitizers/sanitizer_options.cc in ASan builds. 28 # Provided by build/sanitizers/sanitizer_options.cc in ASan builds.
19 ___asan_default_options 29 ___asan_default_options
20 30
21 # Entry point from the app mode loader. 31 # Entry point from the app mode loader.
22 _ChromeAppModeStart_v4 32 _ChromeAppModeStart_v4
23 33
24 # _ChromeMain must be listed last. That's the whole point of this file. 34 # _ChromeMain must be listed last. That's the whole point of this file.
25 _ChromeMain 35 _ChromeMain
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698