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

Side by Side Diff: chrome/browser/permissions/permission_prompt_android.h

Issue 2748443005: Rename website_settings UI folders to permission_bubble. (Closed)
Patch Set: Rebase. Created 3 years, 9 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_ 5 #ifndef CHROME_BROWSER_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_
6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_ 6 #define CHROME_BROWSER_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_
7 7
8 #include "chrome/browser/ui/website_settings/permission_prompt.h" 8 #include "chrome/browser/ui/permission_bubble/permission_prompt.h"
9 9
10 class InfoBarService; 10 class InfoBarService;
11 11
12 namespace content { 12 namespace content {
13 class WebContents; 13 class WebContents;
14 } 14 }
15 15
16 namespace infobars { 16 namespace infobars {
17 class InfoBar; 17 class InfoBar;
18 } 18 }
(...skipping 26 matching lines...) Expand all
45 // |delegate_| is the PermissionRequestManager, which owns this object. 45 // |delegate_| is the PermissionRequestManager, which owns this object.
46 Delegate* delegate_; 46 Delegate* delegate_;
47 // |infobar_| is owned by the InfoBarService; we keep a pointer here so we can 47 // |infobar_| is owned by the InfoBarService; we keep a pointer here so we can
48 // ask the service to remove the infobar after it is added. 48 // ask the service to remove the infobar after it is added.
49 infobars::InfoBar* infobar_; 49 infobars::InfoBar* infobar_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(PermissionPromptAndroid); 51 DISALLOW_COPY_AND_ASSIGN(PermissionPromptAndroid);
52 }; 52 };
53 53
54 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_ 54 #endif // CHROME_BROWSER_PERMISSIONS_PERMISSION_PROMPT_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698