| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ | 5 #ifndef CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ |
| 6 #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ | 6 #define CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "components/content_settings/core/common/content_settings.h" | 10 #include "components/content_settings/core/common/content_settings.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 const GURL& requesting_frame, | 32 const GURL& requesting_frame, |
| 33 const base::Callback<void(ContentSetting)>& callback, | 33 const base::Callback<void(ContentSetting)>& callback, |
| 34 bool* permission_set, | 34 bool* permission_set, |
| 35 bool* new_permission); | 35 bool* new_permission); |
| 36 | 36 |
| 37 // Returns true if the cancellation request was handled. | 37 // Returns true if the cancellation request was handled. |
| 38 bool CancelPermissionRequest(content::WebContents* web_contents, | 38 bool CancelPermissionRequest(content::WebContents* web_contents, |
| 39 int bridge_id); | 39 int bridge_id); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 #if defined(ENABLE_EXTENSIONS) |
| 42 Profile* profile_; | 43 Profile* profile_; |
| 44 #endif |
| 43 | 45 |
| 44 DISALLOW_COPY_AND_ASSIGN(GeolocationPermissionContextExtensions); | 46 DISALLOW_COPY_AND_ASSIGN(GeolocationPermissionContextExtensions); |
| 45 }; | 47 }; |
| 46 | 48 |
| 47 #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_
H_ | 49 #endif // CHROME_BROWSER_GEOLOCATION_GEOLOCATION_PERMISSION_CONTEXT_EXTENSIONS_
H_ |
| OLD | NEW |