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

Side by Side Diff: chrome/browser/android/fullscreen/fullscreen_infobar_delegate.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
11 #include "base/android/scoped_java_ref.h" 11 #include "base/android/scoped_java_ref.h"
12 #include "base/macros.h"
12 #include "components/infobars/core/confirm_infobar_delegate.h" 13 #include "components/infobars/core/confirm_infobar_delegate.h"
13 #include "url/gurl.h" 14 #include "url/gurl.h"
14 15
15 class InfoBarService; 16 class InfoBarService;
16 17
17 // Native part of FullscreenInfoBarDelegate.java. This class is responsible 18 // Native part of FullscreenInfoBarDelegate.java. This class is responsible
18 // for adding and removing the fullscreen infobar. 19 // for adding and removing the fullscreen infobar.
19 class FullscreenInfoBarDelegate : public ConfirmInfoBarDelegate { 20 class FullscreenInfoBarDelegate : public ConfirmInfoBarDelegate {
20 public: 21 public:
21 static bool RegisterFullscreenInfoBarDelegate(JNIEnv* env); 22 static bool RegisterFullscreenInfoBarDelegate(JNIEnv* env);
(...skipping 13 matching lines...) Expand all
35 bool Cancel() override; 36 bool Cancel() override;
36 37
37 private: 38 private:
38 base::android::ScopedJavaGlobalRef<jobject> j_delegate_; 39 base::android::ScopedJavaGlobalRef<jobject> j_delegate_;
39 GURL origin_; 40 GURL origin_;
40 41
41 DISALLOW_COPY_AND_ASSIGN(FullscreenInfoBarDelegate); 42 DISALLOW_COPY_AND_ASSIGN(FullscreenInfoBarDelegate);
42 }; 43 };
43 44
44 #endif // CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_ 45 #endif // CHROME_BROWSER_ANDROID_FULLSCREEN_FULLSCREEN_INFOBAR_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/foreign_session_helper.cc ('k') | chrome/browser/android/history_report/data_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698