Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / heap / glue / MessageLoopInterruptor.h
index 176f179..966bb01 100644 (file)
@@ -38,9 +38,9 @@ namespace blink {
 
 class MessageLoopInterruptor : public ThreadState::Interruptor {
 public:
-    explicit MessageLoopInterruptor(blink::WebThread* thread) : m_thread(thread) { }
+    explicit MessageLoopInterruptor(WebThread* thread) : m_thread(thread) { }
 
-    virtual void requestInterrupt() OVERRIDE
+    virtual void requestInterrupt() override
     {
         // GCTask has an empty run() method. Its only purpose is to guarantee
         // that MessageLoop will have a task to process which will result
@@ -48,14 +48,14 @@ public:
         m_thread->postTask(new GCTask);
     }
 
-    virtual void clearInterrupt() OVERRIDE { }
+    virtual void clearInterrupt() override { }
 
 private:
-    class GCTask : public blink::WebThread::Task {
+    class GCTask : public WebThread::Task {
     public:
         virtual ~GCTask() { }
 
-        virtual void run() OVERRIDE
+        virtual void run() override
         {
             // Don't do anything here because we don't know if this is
             // a nested event loop or not. PendingGCRunner::didProcessTask
@@ -65,9 +65,9 @@ private:
         }
     };
 
-    blink::WebThread* m_thread;
+    WebThread* m_thread;
 };
 
-}
+} // namespace blink
 
 #endif