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

Side by Side Diff: Source/heap/ThreadState.h

Issue 178193014: Oilpan: add more Event-related USED_FROM_MULTIPLE_THREADS() decls. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 } 540 }
541 }; 541 };
542 542
543 template<> class ThreadStateFor<AnyThread> { 543 template<> class ThreadStateFor<AnyThread> {
544 public: 544 public:
545 static ThreadState* state() { return ThreadState::current(); } 545 static ThreadState* state() { return ThreadState::current(); }
546 }; 546 };
547 547
548 // FIXME: Experiment if the threading affinity really matters for performance. 548 // FIXME: Experiment if the threading affinity really matters for performance.
549 // FIXME: Move these macros and other related structures to a separate file. 549 // FIXME: Move these macros and other related structures to a separate file.
550 USED_FROM_MULTIPLE_THREADS(CloseEvent);
550 USED_FROM_MULTIPLE_THREADS(Crypto); 551 USED_FROM_MULTIPLE_THREADS(Crypto);
551 USED_FROM_MULTIPLE_THREADS(DOMParser); 552 USED_FROM_MULTIPLE_THREADS(DOMParser);
552 USED_FROM_MULTIPLE_THREADS(DOMURL); 553 USED_FROM_MULTIPLE_THREADS(DOMURL);
553 USED_FROM_MULTIPLE_THREADS(DeprecatedStorageQuota); 554 USED_FROM_MULTIPLE_THREADS(DeprecatedStorageQuota);
554 USED_FROM_MULTIPLE_THREADS(ErrorEvent); 555 USED_FROM_MULTIPLE_THREADS(ErrorEvent);
555 USED_FROM_MULTIPLE_THREADS(Event); 556 USED_FROM_MULTIPLE_THREADS(Event);
556 USED_FROM_MULTIPLE_THREADS(EventSource); 557 USED_FROM_MULTIPLE_THREADS(EventSource);
557 USED_FROM_MULTIPLE_THREADS(EventTarget); 558 USED_FROM_MULTIPLE_THREADS(EventTarget);
558 USED_FROM_MULTIPLE_THREADS(Key); 559 USED_FROM_MULTIPLE_THREADS(Key);
559 USED_FROM_MULTIPLE_THREADS(KeyAlgorithm); 560 USED_FROM_MULTIPLE_THREADS(KeyAlgorithm);
(...skipping 10 matching lines...) Expand all
570 USED_FROM_MULTIPLE_THREADS(PerformanceTiming); 571 USED_FROM_MULTIPLE_THREADS(PerformanceTiming);
571 USED_FROM_MULTIPLE_THREADS(ProgressEvent); 572 USED_FROM_MULTIPLE_THREADS(ProgressEvent);
572 USED_FROM_MULTIPLE_THREADS(SubtleCrypto); 573 USED_FROM_MULTIPLE_THREADS(SubtleCrypto);
573 USED_FROM_MULTIPLE_THREADS(TextDecoder); 574 USED_FROM_MULTIPLE_THREADS(TextDecoder);
574 USED_FROM_MULTIPLE_THREADS(TextEncoder); 575 USED_FROM_MULTIPLE_THREADS(TextEncoder);
575 USED_FROM_MULTIPLE_THREADS(UserTiming); 576 USED_FROM_MULTIPLE_THREADS(UserTiming);
576 USED_FROM_MULTIPLE_THREADS(WebKitNotification); 577 USED_FROM_MULTIPLE_THREADS(WebKitNotification);
577 USED_FROM_MULTIPLE_THREADS(WorkerCrypto); 578 USED_FROM_MULTIPLE_THREADS(WorkerCrypto);
578 USED_FROM_MULTIPLE_THREADS(WorkerPerformance); 579 USED_FROM_MULTIPLE_THREADS(WorkerPerformance);
579 USED_FROM_MULTIPLE_THREADS(XMLHttpRequest); 580 USED_FROM_MULTIPLE_THREADS(XMLHttpRequest);
581 USED_FROM_MULTIPLE_THREADS(XMLHttpRequestProgressEvent);
580 USED_FROM_MULTIPLE_THREADS(XMLSerializer); 582 USED_FROM_MULTIPLE_THREADS(XMLSerializer);
581 USED_FROM_MULTIPLE_THREADS(XPathEvaluator); 583 USED_FROM_MULTIPLE_THREADS(XPathEvaluator);
582 USED_FROM_MULTIPLE_THREADS(XPathExpression); 584 USED_FROM_MULTIPLE_THREADS(XPathExpression);
583 USED_FROM_MULTIPLE_THREADS(XPathNSResolver); 585 USED_FROM_MULTIPLE_THREADS(XPathNSResolver);
584 USED_FROM_MULTIPLE_THREADS(XPathResult); 586 USED_FROM_MULTIPLE_THREADS(XPathResult);
585 USED_FROM_MULTIPLE_THREADS(XSLTProcessor); 587 USED_FROM_MULTIPLE_THREADS(XSLTProcessor);
586 588
587 } 589 }
588 590
589 #endif // ThreadState_h 591 #endif // ThreadState_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698