Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1088)

Side by Side Diff: chrome/browser/android/app_hooks.h

Issue 2738893002: Add flag for enabling/disabling video fullscreen detection (Closed)
Patch Set: s/AppHooksHelper/AppHooks Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698