Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_ANDROID_APP_HOOKS_H_ | |
| 6 #define CHROME_BROWSER_ANDROID_APP_HOOKS_H_ | |
| 7 | |
| 8 #include <jni.h> | |
| 9 #include "base/macros.h" | |
| 10 | |
| 11 namespace chrome { | |
| 12 namespace android { | |
| 13 | |
| 14 class AppHooks { | |
|
mlamouri (slow - plz ping)
2017/03/14 15:36:15
Actually, just realised you could use = delete on
| |
| 15 public: | |
| 16 static bool ShouldDetectVideoFullscreen(); | |
| 17 | |
| 18 private: | |
| 19 AppHooks(); | |
|
mlamouri (slow - plz ping)
2017/03/14 15:36:15
so, as said above, shouldn't this be = delete?
| |
| 20 ~AppHooks(); | |
| 21 | |
| 22 DISALLOW_COPY_AND_ASSIGN(AppHooks); | |
| 23 }; | |
| 24 | |
| 25 } // namespace android | |
| 26 } // namespace chrome | |
| 27 | |
| 28 #endif // CHROME_BROWSER_ANDROID_APP_HOOKS_H_ | |
| OLD | NEW |