Chromium Code Reviews| Index: chrome/browser/fullscreen_ozone.cc |
| diff --git a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp b/chrome/browser/fullscreen_ozone.cc |
| similarity index 55% |
| copy from tools/clang/plugins/tests/missing_ctor_ignored_base.cpp |
| copy to chrome/browser/fullscreen_ozone.cc |
| index 6c4ddd4fc6c4a27e9721be91971255bd6f8bfd15..c849bdac9e15f672cc179c21aab4c4dca3d9a813 100644 |
| --- a/tools/clang/plugins/tests/missing_ctor_ignored_base.cpp |
| +++ b/chrome/browser/fullscreen_ozone.cc |
| @@ -2,10 +2,9 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "missing_ctor_ignored_base.h" |
| +#include "base/logging.h" |
| -int main() { |
| - MissingCtorsWithIgnoredBase one; |
| - MissingCtorsWithIgnoredGrandBase two; |
| - return 0; |
| +bool IsFullScreenMode() { |
| + NOTIMPLEMENTED(); |
|
fwang
2016/10/12 14:33:15
Maybe add a TODO that references https://bugs.chro
tonikitoo
2016/10/12 14:45:07
Done.
|
| + return false; |
| } |