| Index: content/browser/gpu/gpu_ipc_browsertests.cc
|
| diff --git a/content/browser/gpu/gpu_ipc_browsertests.cc b/content/browser/gpu/gpu_ipc_browsertests.cc
|
| index eb3c6cebd0b9d20704defcd48d1075f0ebe468d4..3c036372620b3069be6bc24b1ec3c3413851b58f 100644
|
| --- a/content/browser/gpu/gpu_ipc_browsertests.cc
|
| +++ b/content/browser/gpu/gpu_ipc_browsertests.cc
|
| @@ -25,7 +25,7 @@ const content::CauseForGpuLaunch kInitCause =
|
|
|
| class ContextTestBase : public content::ContentBrowserTest {
|
| public:
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| if (!content::BrowserGpuChannelHostFactory::CanUseForTesting())
|
| return;
|
|
|
| @@ -52,7 +52,7 @@ class ContextTestBase : public content::ContentBrowserTest {
|
| ContentBrowserTest::SetUpOnMainThread();
|
| }
|
|
|
| - virtual void TearDownOnMainThread() OVERRIDE {
|
| + virtual void TearDownOnMainThread() override {
|
| // Must delete the context first.
|
| context_.reset(NULL);
|
| ContentBrowserTest::TearDownOnMainThread();
|
| @@ -73,7 +73,7 @@ namespace content {
|
|
|
| class BrowserGpuChannelHostFactoryTest : public ContentBrowserTest {
|
| public:
|
| - virtual void SetUpOnMainThread() OVERRIDE {
|
| + virtual void SetUpOnMainThread() override {
|
| if (!BrowserGpuChannelHostFactory::CanUseForTesting())
|
| return;
|
|
|
|
|