summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/bookmark_editor_view.h
diff options
context:
space:
mode:
authorctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-26 21:51:04 +0000
committerctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-26 21:51:04 +0000
commita9d59460c07913177e8bf149276a433403783c88 (patch)
treee661ac21a58003c4e5a1ddd0afb550258ace59ee /chrome/browser/views/bookmark_editor_view.h
parent78d36a2f101aaa7dea9820b7001672c8f5f78f4f (diff)
downloadchromium_src-a9d59460c07913177e8bf149276a433403783c88.zip
chromium_src-a9d59460c07913177e8bf149276a433403783c88.tar.gz
chromium_src-a9d59460c07913177e8bf149276a433403783c88.tar.bz2
views: [accessibility] Add support for Accessibility Value.
BUG=9604 TEST=point AccExplorer to Edit Bookmark dialog, see if everything has a MSAA information, like: Name, Role, State, Value. Patch from Thiago Farina <thiago.farina@gmail.com> Review URL: http://codereview.chromium.org/928001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42831 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/bookmark_editor_view.h')
-rw-r--r--chrome/browser/views/bookmark_editor_view.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/browser/views/bookmark_editor_view.h b/chrome/browser/views/bookmark_editor_view.h
index 575b726..84fccf6 100644
--- a/chrome/browser/views/bookmark_editor_view.h
+++ b/chrome/browser/views/bookmark_editor_view.h
@@ -18,9 +18,10 @@
#include "testing/gtest/include/gtest/gtest_prod.h"
namespace views {
+class Label;
+class Menu2;
class NativeButton;
class Window;
-class Menu2;
}
class BookmarkEditorViewTest;
@@ -227,9 +228,15 @@ class BookmarkEditorView : public BookmarkEditor,
// Used to create a new group.
scoped_ptr<views::NativeButton> new_group_button_;
+ // The label for the url text field.
+ views::Label* url_label_;
+
// Used for editing the URL.
views::Textfield url_tf_;
+ // The label for the title text field.
+ views::Label* title_label_;
+
// Used for editing the title.
views::Textfield title_tf_;