// 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_PRERENDER_EXTERNAL_PRERENDER_HANDLER_ANDROID_H_ #define CHROME_BROWSER_PRERENDER_EXTERNAL_PRERENDER_HANDLER_ANDROID_H_ #include #include "base/android/scoped_java_ref.h" #include "base/macros.h" #include "base/memory/scoped_ptr.h" class GURL; class Profile; namespace content { class WebContents; } namespace prerender { class PrerenderHandle; // A class for handling external prerender requests from other applications. class ExternalPrerenderHandlerAndroid { public: ExternalPrerenderHandlerAndroid(); // Add a prerender with the given url and referrer on the PrerenderManager of // the given profile. This is restricted to a single prerender at a time. bool AddPrerender(JNIEnv* env, const base::android::JavaParamRef& obj, const base::android::JavaParamRef& profile, const base::android::JavaParamRef& jweb_contents, const base::android::JavaParamRef& url, const base::android::JavaParamRef& referrer, jint width, jint height, jboolean prerender_on_cellular); // Cancel the prerender associated with the prerender_handle_ void CancelCurrentPrerender( JNIEnv* env, const base::android::JavaParamRef& object); // Whether the PrerenderManager associated with the given profile has any // prerenders for the url. static bool HasPrerenderedUrl(Profile* profile, GURL url, content::WebContents* web_contents); // Whether the PrerenderManager associated with the given profile has any // prerenders for the url, and the prerender has finished loading. static bool HasPrerenderedAndFinishedLoadingUrl( Profile* profile, GURL url, content::WebContents* web_contents); static bool RegisterExternalPrerenderHandlerAndroid(JNIEnv* env); private: virtual ~ExternalPrerenderHandlerAndroid(); scoped_ptr prerender_handle_; DISALLOW_COPY_AND_ASSIGN(ExternalPrerenderHandlerAndroid); }; } // namespace prerender #endif // CHROME_BROWSER_PRERENDER_EXTERNAL_PRERENDER_HANDLER_ANDROID_H_