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_HELPER_H_ | |
| 6 #define CHROME_BROWSER_ANDROID_APP_HOOKS_HELPER_H_ | |
| 7 | |
| 8 #include <jni.h> | |
| 9 #include "base/macros.h" | |
| 10 | |
| 11 namespace chrome { | |
| 12 namespace android { | |
| 13 | |
| 14 class AppHooksHelper { | |
|
David Trainor- moved to gerrit
2017/03/09 17:15:30
Should this just be AppHooks? I'm fine either way
Zhiqiang Zhang (Slow)
2017/03/14 13:15:28
Done.
| |
| 15 public: | |
| 16 static bool ShouldDetectVideoFullscreen(); | |
| 17 | |
| 18 private: | |
| 19 AppHooksHelper() {} | |
| 20 ~AppHooksHelper() {} | |
| 21 DISALLOW_COPY_AND_ASSIGN(AppHooksHelper); | |
| 22 }; | |
| 23 | |
| 24 } // namespace android | |
| 25 } // namespace chrome | |
| 26 | |
| 27 #endif // CHROME_BROWSER_ANDROID_APP_HOOKS_HELPER_H_ | |
| OLD | NEW |