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

Side by Side Diff: third_party/WebKit/Source/platform/heap/MessageLoopInterruptor.h

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 28 matching lines...) Expand all
39 39
40 class MessageLoopInterruptor : public ThreadState::Interruptor { 40 class MessageLoopInterruptor : public ThreadState::Interruptor {
41 public: 41 public:
42 explicit MessageLoopInterruptor(WebTaskRunner* taskRunner) : m_taskRunner(ta skRunner) { } 42 explicit MessageLoopInterruptor(WebTaskRunner* taskRunner) : m_taskRunner(ta skRunner) { }
43 43
44 void requestInterrupt() override 44 void requestInterrupt() override
45 { 45 {
46 // GCTask has an empty run() method. Its only purpose is to guarantee 46 // GCTask has an empty run() method. Its only purpose is to guarantee
47 // that MessageLoop will have a task to process which will result 47 // that MessageLoop will have a task to process which will result
48 // in PendingGCRunner::didProcessTask being executed. 48 // in PendingGCRunner::didProcessTask being executed.
49 m_taskRunner->postTask(FROM_HERE, new GCTask); 49 m_taskRunner->postTask(BLINK_FROM_HERE, new GCTask);
50 } 50 }
51 51
52 private: 52 private:
53 class GCTask : public WebTaskRunner::Task { 53 class GCTask : public WebTaskRunner::Task {
54 public: 54 public:
55 virtual ~GCTask() { } 55 virtual ~GCTask() { }
56 56
57 void run() override 57 void run() override
58 { 58 {
59 // Don't do anything here because we don't know if this is 59 // Don't do anything here because we don't know if this is
60 // a nested event loop or not. PendingGCRunner::didProcessTask 60 // a nested event loop or not. PendingGCRunner::didProcessTask
61 // will enter correct safepoint for us. 61 // will enter correct safepoint for us.
62 // We are not calling onInterrupted() because that always 62 // We are not calling onInterrupted() because that always
63 // conservatively enters safepoint with pointers on stack. 63 // conservatively enters safepoint with pointers on stack.
64 } 64 }
65 }; 65 };
66 66
67 WebTaskRunner* m_taskRunner; 67 WebTaskRunner* m_taskRunner;
68 }; 68 };
69 69
70 } // namespace blink 70 } // namespace blink
71 71
72 #endif 72 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/heap/HeapTest.cpp ('k') | third_party/WebKit/Source/platform/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698