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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e57adc2a5417ad51f2c5c98b9c385f75412c7a5c |
--- /dev/null |
+++ b/chrome/browser/ui/android/infobars/data_reduction_proxy_infobar.h |
@@ -0,0 +1,38 @@ |
+// 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_INFO_BAR_H_ |
+#define CHROME_BROWSER_UI_ANDROID_INFOBARS_DATA_REDUCTION_PROXY_INFO_BAR_H_ |
+ |
gone
2014/07/11 21:50:15
random newlines
bengr
2014/07/11 23:02:24
Done.
|
+ |
+ |
+#include "base/basictypes.h" |
+#include "base/strings/string16.h" |
+#include "chrome/browser/net/spdyproxy/data_reduction_proxy_infobar_delegate.h" |
+#include "chrome/browser/ui/android/infobars/confirm_infobar.h" |
+ |
+class DataReductionProxyInfoBar : public ConfirmInfoBar { |
+ public: |
+ static void Launch(JNIEnv* env, jclass, jobject jweb_contents); |
+ static bool Register(JNIEnv* env); |
+ explicit DataReductionProxyInfoBar( |
+ scoped_ptr<DataReductionProxyInfoBarDelegate> delegate); |
+ virtual ~DataReductionProxyInfoBar(); |
+ |
+ private: |
+ //ConfirmInfoBar: |
+ virtual base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar( |
+ JNIEnv* env) OVERRIDE; |
+ |
+ DataReductionProxyInfoBarDelegate* 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_INFO_BAR_H_ |