| OLD | NEW |
| 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 #include "chrome/browser/permissions/permission_manager.h" | 5 #include "chrome/browser/permissions/permission_manager.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "content/public/browser/permission_type.h" | 26 #include "content/public/browser/permission_type.h" |
| 27 #include "content/public/browser/render_frame_host.h" | 27 #include "content/public/browser/render_frame_host.h" |
| 28 #include "content/public/browser/render_process_host.h" | 28 #include "content/public/browser/render_process_host.h" |
| 29 #include "content/public/browser/web_contents.h" | 29 #include "content/public/browser/web_contents.h" |
| 30 | 30 |
| 31 #if defined(OS_ANDROID) || defined(OS_CHROMEOS) | 31 #if defined(OS_ANDROID) || defined(OS_CHROMEOS) |
| 32 #include "chrome/browser/media/protected_media_identifier_permission_context.h" | 32 #include "chrome/browser/media/protected_media_identifier_permission_context.h" |
| 33 #endif | 33 #endif |
| 34 | 34 |
| 35 #if !defined(OS_ANDROID) | 35 #if !defined(OS_ANDROID) |
| 36 #include "chrome/browser/ui/website_settings/permission_bubble_manager.h" | 36 #include "chrome/browser/permissions/permission_request_manager.h" |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 #if BUILDFLAG(ANDROID_JAVA_UI) | 39 #if BUILDFLAG(ANDROID_JAVA_UI) |
| 40 #include "chrome/browser/geolocation/geolocation_permission_context_android.h" | 40 #include "chrome/browser/geolocation/geolocation_permission_context_android.h" |
| 41 #else | 41 #else |
| 42 #include "chrome/browser/geolocation/geolocation_permission_context.h" | 42 #include "chrome/browser/geolocation/geolocation_permission_context.h" |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 using blink::mojom::PermissionStatus; | 45 using blink::mojom::PermissionStatus; |
| 46 using content::PermissionType; | 46 using content::PermissionType; |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 // Add the callback to |callbacks| which will be run after the loop to | 487 // Add the callback to |callbacks| which will be run after the loop to |
| 488 // prevent re-entrance issues. | 488 // prevent re-entrance issues. |
| 489 callbacks.push_back( | 489 callbacks.push_back( |
| 490 base::Bind(subscription->callback, | 490 base::Bind(subscription->callback, |
| 491 ContentSettingToPermissionStatus(new_value))); | 491 ContentSettingToPermissionStatus(new_value))); |
| 492 } | 492 } |
| 493 | 493 |
| 494 for (const auto& callback : callbacks) | 494 for (const auto& callback : callbacks) |
| 495 callback.Run(); | 495 callback.Run(); |
| 496 } | 496 } |
| OLD | NEW |