OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 COMPONENTS_DOM_DISTILLER_CORE_READER_MODE_PREFERENCES_ANDROID_H_ | |
6 #define COMPONENTS_DOM_DISTILLER_CORE_READER_MODE_PREFERENCES_ANDROID_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 namespace dom_distiller { | |
11 namespace reader_mode_preferences { | |
nyquist
2014/06/30 20:33:24
Use a class instead of namespace: DistilledPagePre
sunangel
2014/07/07 21:21:30
Done.
| |
12 namespace android { | |
13 | |
14 bool RegisterReaderModePrefsAndroid(JNIEnv* env); | |
15 | |
16 } // namespace android | |
17 } // namespace reader_mode_preferences | |
18 } // namespace dom_distiller | |
19 | |
20 #endif // COMPONENTS_DOM_DISTILLER_CORE_READER_MODE_PREFERENCES_ANDROID_H | |
OLD | NEW |