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

Unified Diff: chrome/browser/android/transition_page_helper.h

Issue 1144463003: Remove Navigation Transitions from Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed TransitionPageHelper. Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/transition_page_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/transition_page_helper.h
diff --git a/chrome/browser/android/transition_page_helper.h b/chrome/browser/android/transition_page_helper.h
deleted file mode 100644
index 20d475b83eba22e538e61cb74e32d7072112664c..0000000000000000000000000000000000000000
--- a/chrome/browser/android/transition_page_helper.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2015 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_TRANSITION_PAGE_HELPER_H_
-#define CHROME_BROWSER_ANDROID_TRANSITION_PAGE_HELPER_H_
-
-#include "base/android/jni_android.h"
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-
-namespace content {
-class WebContents;
-}
-
-class TransitionPageHelper {
- public:
- static TransitionPageHelper* FromJavaObject(JNIEnv* env, jobject jobj);
- static bool Register(JNIEnv* env);
-
- TransitionPageHelper();
- virtual ~TransitionPageHelper();
-
- void Destroy(JNIEnv* env, jobject jobj);
-
- void SetWebContents(JNIEnv* env, jobject jobj, jobject jcontent_view_core);
- void ReleaseWebContents(JNIEnv* env, jobject jobj);
- void SetOpacity(JNIEnv* env,
- jobject jobj,
- jobject jcontent_view_core,
- jfloat opacity);
-
- private:
- scoped_ptr<content::WebContents> web_contents_;
-
- DISALLOW_COPY_AND_ASSIGN(TransitionPageHelper);
-};
-
-#endif // CHROME_BROWSER_ANDROID_TRANSITION_PAGE_HELPER_H_
« no previous file with comments | « chrome/browser/android/chrome_jni_registrar.cc ('k') | chrome/browser/android/transition_page_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698