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

Side by Side Diff: chrome/browser/ui/android/infobars/download_overwrite_infobar.h

Issue 580043002: [Android] Prompt with infobar on filename conflict (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: full implementation Created 6 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_DOWNLOAD_OVERWRITE_INFOBAR_H_
6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_DOWNLOAD_OVERWRITE_INFOBAR_H_
7
8 #include "base/android/scoped_java_ref.h"
9 #include "base/basictypes.h"
10 #include "chrome/browser/ui/android/infobars/infobar_android.h"
11
12 namespace chrome {
13 namespace android {
14 class DownloadOverwriteInfoBarDelegate;
15 }
16 }
17
18 class DownloadOverwriteInfoBar : public InfoBarAndroid {
19 public:
20 static scoped_ptr<infobars::InfoBar> CreateInfoBar(
21 scoped_ptr<chrome::android::DownloadOverwriteInfoBarDelegate> delegate);
22 virtual ~DownloadOverwriteInfoBar();
23
24 private:
25 explicit DownloadOverwriteInfoBar(
26 scoped_ptr<chrome::android::DownloadOverwriteInfoBarDelegate> delegate);
27
28 // InfoBarAndroid:
29 virtual base::android::ScopedJavaLocalRef<jobject> CreateRenderInfoBar(
30 JNIEnv* env) override;
31 virtual void ProcessButton(int action,
32 const std::string& action_value) override;
33
34 chrome::android::DownloadOverwriteInfoBarDelegate* GetDelegate();
35
36 base::android::ScopedJavaGlobalRef<jobject> java_delegate_;
37
38 DISALLOW_COPY_AND_ASSIGN(DownloadOverwriteInfoBar);
39 };
40
41 // Registers the native methods through JNI.
42 bool RegisterDownloadOverwriteInfoBarDelegate(JNIEnv* env);
43
44 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_DOWNLOAD_OVERWRITE_INFOBAR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698