OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 namespace pageLauncher { |
| 6 dictionary PageData { |
| 7 // The url of the page. |
| 8 DOMString url; |
| 9 // The mimetype of the page. |
| 10 DOMString mimetype; |
| 11 // The title of the page, if it has one. |
| 12 DOMString? page_title; |
| 13 // The text that was selected on the page when the event fired. |
| 14 DOMString? selected_text; |
| 15 }; |
| 16 |
| 17 interface Events { |
| 18 // Fired when the user clicks the page launcher entry in the action box. |
| 19 // |pageData| : The details of the page the user was on when the button |
| 20 // was clicked. |
| 21 static void onClicked(PageData pageData); |
| 22 }; |
| 23 }; |
OLD | NEW |