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

Side by Side Diff: components/dom_distiller/core/dom_distiller_service_android.h

Issue 340403004: Java wrapper for DistilledPagePrefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DomDistillerService Java wrapper Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(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_DOM_DISTILLER_SERVICE_ANDROID_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_ANDROID_H_
7
8 #include <jni.h>
9 #include "components/dom_distiller/core/dom_distiller_service.h"
10
11 class DomDistillerServiceAndroid {
12 private:
13 dom_distiller::DomDistillerService* service_;
14
15 public:
16 DomDistillerServiceAndroid(JNIEnv* env,
robliao 2014/06/26 18:42:15 Section ordering - public, then protected, then pr
sunangel 2014/06/27 16:27:26 Done.
17 jobject obj,
18 dom_distiller::DomDistillerService* d);
19 static bool Register(JNIEnv* env);
20 jlong GetReaderModePrefsPointer(JNIEnv* env, jobject obj);
21 };
22 #endif // COMPONENTS_DOM_DISTILLER_CORE_DOM_DISTILLER_SERVICE_ANDROID_H
robliao 2014/06/26 18:42:15 One more linebreak above here.
sunangel 2014/06/26 23:31:36 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698