// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_ACCESSIBILITY_LABELS_BUBBLE_MODEL_H_ #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_ACCESSIBILITY_LABELS_BUBBLE_MODEL_H_ #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "chrome/browser/ui/confirm_bubble_model.h" #include "ui/base/mojom/dialog_button.mojom.h" class Profile; namespace content { class WebContents; } // A class that implements a bubble menu shown when we confirm a user allows // integrating the accessibility labels service of Google to Chrome. class AccessibilityLabelsBubbleModel : public ConfirmBubbleModel { … }; #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_ACCESSIBILITY_LABELS_BUBBLE_MODEL_H_