diff options
Diffstat (limited to 'chromium/content/browser/browser_thread_impl.h')
-rw-r--r-- | chromium/content/browser/browser_thread_impl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/content/browser/browser_thread_impl.h b/chromium/content/browser/browser_thread_impl.h index 167cc3b85a1..72915ea393f 100644 --- a/chromium/content/browser/browser_thread_impl.h +++ b/chromium/content/browser/browser_thread_impl.h @@ -23,14 +23,14 @@ class CONTENT_EXPORT BrowserThreadImpl : public BrowserThread, // thread already exists. BrowserThreadImpl(BrowserThread::ID identifier, base::MessageLoop* message_loop); - virtual ~BrowserThreadImpl(); + ~BrowserThreadImpl() override; static void ShutdownThreadPool(); protected: - virtual void Init() OVERRIDE; - virtual void Run(base::MessageLoop* message_loop) OVERRIDE; - virtual void CleanUp() OVERRIDE; + void Init() override; + void Run(base::MessageLoop* message_loop) override; + void CleanUp() override; private: // We implement all the functionality of the public BrowserThread @@ -61,7 +61,7 @@ class CONTENT_EXPORT BrowserThreadImpl : public BrowserThread, // For testing. friend class ContentTestSuiteBaseListener; friend class TestBrowserThreadBundle; - static void FlushThreadPoolHelper(); + static void FlushThreadPoolHelperForTesting(); // The identifier of this thread. Only one thread can exist with a given // identifier at a given time. |