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 { | |
| 15 public: | |
| 16 static bool ShouldDetectVideoFullscreen(); | |
| 17 | |
| 18 private: | |
| 19 AppHooks() {} | |
| 20 ~AppHooks() {} | |
|
mlamouri (slow - plz ping)
2017/03/14 12:02:24
Can you implement these in the cc file and mark th
Zhiqiang Zhang (Slow)
2017/03/14 13:15:28
Done
| |
| 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 |