blob: a9bee0f71e635f71d511c61b032cc92fb0b07e22 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_
#define CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_
#include <jni.h>
#include "base/android/scoped_java_ref.h"
#include "base/compiler_specific.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
// Provides the list of most visited sites and their thumbnails to Java.
class MostVisitedSites : public content::NotificationObserver {
public:
explicit MostVisitedSites(Profile* profile);
void Destroy(JNIEnv* env, jobject obj);
void SetMostVisitedURLsObserver(JNIEnv* env,
jobject obj,
jobject j_observer,
jint num_sites);
void GetURLThumbnail(JNIEnv* env,
jobject obj,
jstring url,
jobject j_callback);
void BlacklistUrl(JNIEnv* env, jobject obj, jstring j_url);
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
// Registers JNI methods.
static bool Register(JNIEnv* env);
private:
virtual ~MostVisitedSites();
void QueryMostVisitedURLs();
// The profile whose most visited sites will be queried.
Profile* profile_;
// The observer to be notified when the list of most visited sites changes.
base::android::ScopedJavaGlobalRef<jobject> observer_;
// The maximum number of most visited sites to return.
int num_sites_;
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(MostVisitedSites);
};
#endif // CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_