Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module blink.mojom; | |
| 6 | |
| 7 import "ui/gfx/geometry/mojo/geometry.mojom"; | |
| 8 | |
| 9 // Browser-side service used by the renderer for showing the InProductHelp UI | |
| 10 // widget/popup for the media download button. | |
| 11 interface MediaInProductHelp { | |
| 12 // The position of the button in the frame's local coordinate space, where the | |
| 13 // UI widget should be anchored. | |
| 14 // The request_id denotes the element making the request. | |
|
Sam McNally
2017/07/07 05:22:58
request_id doesn't seem to exist anymore.
| |
| 15 ShowInProductHelpWidget(gfx.mojom.Rect button_rect); | |
| 16 }; | |
| OLD | NEW |