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

Unified Diff: chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h

Issue 2000433002: Remove unused DataReductionProxyInfoBar and related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h
diff --git a/chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h b/chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h
deleted file mode 100644
index d1db8f8794451dd9314523ef3464600873676d40..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2014 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_UI_ANDROID_INFOBARS_DATA_REDUCTION_PROXY_INFOBAR_H_
-#define CHROME_BROWSER_UI_ANDROID_INFOBARS_DATA_REDUCTION_PROXY_INFOBAR_H_
-
-#include "base/macros.h"
-#include "base/strings/string16.h"
-#include "chrome/browser/net/spdyproxy/data_reduction_proxy_infobar_delegate_android.h"
-#include "chrome/browser/ui/android/infobars/confirm_infobar.h"
-
-class DataReductionProxyInfoBar : public ConfirmInfoBar {
- public:
- static void Launch(JNIEnv* env,
- jclass,
- jobject jweb_contents,
- jstring jlink_url);
-
- static bool Register(JNIEnv* env);
-
- explicit DataReductionProxyInfoBar(
- std::unique_ptr<DataReductionProxyInfoBarDelegateAndroid> delegate);
-
- ~DataReductionProxyInfoBar() override;
-
- private:
- // ConfirmInfoBar:
- base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar(
- JNIEnv* env) override;
-
- DataReductionProxyInfoBarDelegateAndroid* GetDelegate();
-
- base::android::ScopedJavaGlobalRef<jobject>
- java_data_reduction_proxy_delegate_;
-
- DISALLOW_COPY_AND_ASSIGN(DataReductionProxyInfoBar);
-};
-
-bool RegisterDataReductionProxyInfoBar(JNIEnv* env);
-
-#endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_DATA_REDUCTION_PROXY_INFOBAR_H_

Powered by Google App Engine
This is Rietveld 408576698