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

Side by Side Diff: Source/platform/heap/Visitor.h

Issue 1317563005: Fix binary size increase because of class name loading. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix build. Created 5 years, 3 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 377
378 virtual void registerWeakCellWithCallback(void**, WeakCallback) = 0; 378 virtual void registerWeakCellWithCallback(void**, WeakCallback) = 0;
379 379
380 private: 380 private:
381 static Visitor* fromHelper(VisitorHelper<Visitor>* helper) { return static_c ast<Visitor*>(helper); } 381 static Visitor* fromHelper(VisitorHelper<Visitor>* helper) { return static_c ast<Visitor*>(helper); }
382 382
383 const MarkingMode m_markingMode; 383 const MarkingMode m_markingMode;
384 bool m_isGlobalMarkingVisitor; 384 bool m_isGlobalMarkingVisitor;
385 }; 385 };
386 386
387 #if ENABLE(GC_PROFILING)
387 template<typename T> 388 template<typename T>
388 struct TypenameStringTrait { 389 struct TypenameStringTrait {
389 static const String get() 390 static const String get()
390 { 391 {
391 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( )); 392 return WTF::extractTypeNameFromFunctionName(WTF::extractNameFunction<T>( ));
392 } 393 }
393 }; 394 };
395 #endif
394 396
395 } // namespace blink 397 } // namespace blink
396 398
397 #endif // Visitor_h 399 #endif // Visitor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698