diff options
-rw-r--r-- | chrome/browser/chromeos/frame/normal_browser_frame_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/accessible_toolbar_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/bookmark_bar_view.cc | 3 | ||||
-rw-r--r-- | chrome/browser/views/extensions/extension_shelf.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/frame/browser_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/frame/opaque_browser_frame_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/infobars/infobar_container.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/infobars/infobars.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/location_bar_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/tab_contents/tab_contents_container.h | 3 | ||||
-rw-r--r-- | chrome/browser/views/tabs/tab_strip.h | 3 | ||||
-rw-r--r-- | views/controls/button/button.h | 1 | ||||
-rw-r--r-- | views/controls/combobox/combobox.h | 3 | ||||
-rw-r--r-- | views/controls/progress_bar.h | 3 | ||||
-rw-r--r-- | views/controls/resize_gripper.h | 3 | ||||
-rw-r--r-- | views/controls/single_split_view.h | 3 | ||||
-rw-r--r-- | views/controls/textfield/textfield.h | 3 | ||||
-rw-r--r-- | views/widget/root_view.h | 3 | ||||
-rw-r--r-- | views/window/non_client_view.h | 3 |
19 files changed, 0 insertions, 55 deletions
diff --git a/chrome/browser/chromeos/frame/normal_browser_frame_view.h b/chrome/browser/chromeos/frame/normal_browser_frame_view.h index e0d55ab..f7c23d5 100644 --- a/chrome/browser/chromeos/frame/normal_browser_frame_view.h +++ b/chrome/browser/chromeos/frame/normal_browser_frame_view.h @@ -85,9 +85,6 @@ class NormalBrowserFrameView : public BrowserNonClientFrameView, // The bounds of the ClientView. gfx::Rect client_view_bounds_; - // The accessible name of this view. - std::wstring accessible_name_; - DISALLOW_EVIL_CONSTRUCTORS(NormalBrowserFrameView); }; diff --git a/chrome/browser/views/accessible_toolbar_view.h b/chrome/browser/views/accessible_toolbar_view.h index c129f4b..0af7b01 100644 --- a/chrome/browser/views/accessible_toolbar_view.h +++ b/chrome/browser/views/accessible_toolbar_view.h @@ -55,9 +55,6 @@ class AccessibleToolbarView : public views::View { // dealt within the WillLoseFocus method. void SetFocusToLastFocusedView(); - // Storage of strings needed for accessibility. - std::wstring accessible_name_; - // Selected child view currently having accessibility focus. views::View* selected_focused_view_; diff --git a/chrome/browser/views/bookmark_bar_view.cc b/chrome/browser/views/bookmark_bar_view.cc index df16ac7..8c2b497 100644 --- a/chrome/browser/views/bookmark_bar_view.cc +++ b/chrome/browser/views/bookmark_bar_view.cc @@ -350,9 +350,6 @@ class BookmarkBarView::ButtonSeparatorView : public views::View { } private: - // Storage of strings needed for accessibility. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(ButtonSeparatorView); }; diff --git a/chrome/browser/views/extensions/extension_shelf.h b/chrome/browser/views/extensions/extension_shelf.h index df8a0ec..b13b79c 100644 --- a/chrome/browser/views/extensions/extension_shelf.h +++ b/chrome/browser/views/extensions/extension_shelf.h @@ -142,9 +142,6 @@ class ExtensionShelf : public DetachableToolbarView, // The model representing the toolstrips on the shelf. ExtensionShelfModel* model_; - // Storage of strings needed for accessibility. - std::wstring accessible_name_; - // Animation controlling showing and hiding of the shelf. scoped_ptr<SlideAnimation> size_animation_; diff --git a/chrome/browser/views/frame/browser_view.h b/chrome/browser/views/frame/browser_view.h index 94ccafe..79f9858 100644 --- a/chrome/browser/views/frame/browser_view.h +++ b/chrome/browser/views/frame/browser_view.h @@ -564,9 +564,6 @@ class BrowserView : public BrowserBubbleHost, // A bottom bar for showing extensions. ExtensionShelf* extension_shelf_; - // The accessible name of this view. - std::wstring accessible_name_; - scoped_ptr<BrowserExtender> browser_extender_; // Last focused view that issued a tab traversal. diff --git a/chrome/browser/views/frame/opaque_browser_frame_view.h b/chrome/browser/views/frame/opaque_browser_frame_view.h index 59c322c..53fbc21 100644 --- a/chrome/browser/views/frame/opaque_browser_frame_view.h +++ b/chrome/browser/views/frame/opaque_browser_frame_view.h @@ -133,9 +133,6 @@ class OpaqueBrowserFrameView : public BrowserNonClientFrameView, // The bounds of the ClientView. gfx::Rect client_view_bounds_; - // The accessible name of this view. - std::wstring accessible_name_; - DISALLOW_EVIL_CONSTRUCTORS(OpaqueBrowserFrameView); }; diff --git a/chrome/browser/views/infobars/infobar_container.h b/chrome/browser/views/infobars/infobar_container.h index f9bb85a..7480c7b 100644 --- a/chrome/browser/views/infobars/infobar_container.h +++ b/chrome/browser/views/infobars/infobar_container.h @@ -85,9 +85,6 @@ class InfoBarContainer : public views::View, // The TabContents for which we are currently showing InfoBars. TabContents* tab_contents_; - // Storage of the string needed for accessibility. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(InfoBarContainer); }; diff --git a/chrome/browser/views/infobars/infobars.h b/chrome/browser/views/infobars/infobars.h index 4fa9efa..f55a454 100644 --- a/chrome/browser/views/infobars/infobars.h +++ b/chrome/browser/views/infobars/infobars.h @@ -132,9 +132,6 @@ class InfoBar : public views::View, // the stack in ViewHierarchyChanged to unwind). void DeleteSelf(); - // Storage of string needed for accessibility. - std::wstring accessible_name_; - // The InfoBar's container InfoBarContainer* container_; diff --git a/chrome/browser/views/location_bar_view.h b/chrome/browser/views/location_bar_view.h index 48d72f0..91e1e89 100644 --- a/chrome/browser/views/location_bar_view.h +++ b/chrome/browser/views/location_bar_view.h @@ -639,9 +639,6 @@ class LocationBarView : public LocationBar, // Used schedule a task for the first run info bubble. ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; - // Storage of string needed for accessibility. - std::wstring accessible_name_; - DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); }; diff --git a/chrome/browser/views/tab_contents/tab_contents_container.h b/chrome/browser/views/tab_contents/tab_contents_container.h index 39f2de6..18e69ff 100644 --- a/chrome/browser/views/tab_contents/tab_contents_container.h +++ b/chrome/browser/views/tab_contents/tab_contents_container.h @@ -73,9 +73,6 @@ class TabContentsContainer : public views::View, // Handles registering for our notifications. NotificationRegistrar registrar_; - // Storage of the string needed for accessibility. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(TabContentsContainer); }; diff --git a/chrome/browser/views/tabs/tab_strip.h b/chrome/browser/views/tabs/tab_strip.h index e1cbfda..57724ce 100644 --- a/chrome/browser/views/tabs/tab_strip.h +++ b/chrome/browser/views/tabs/tab_strip.h @@ -430,9 +430,6 @@ class TabStrip : public BaseTabStrip, // cursor. int available_width_for_tabs_; - // Storage of strings needed for accessibility. - std::wstring accessible_name_; - // The size of the new tab button must be hardcoded because we need to be // able to lay it out before we are able to get its image from the // ThemeProvider. It also makes sense to do this, because the size of the diff --git a/views/controls/button/button.h b/views/controls/button/button.h index 016fd74..7c3aac4 100644 --- a/views/controls/button/button.h +++ b/views/controls/button/button.h @@ -57,7 +57,6 @@ class Button : public View { // Accessibility data. std::wstring accessible_shortcut_; - std::wstring accessible_name_; // The id tag associated with this button. Used to disambiguate buttons in // the ButtonListener implementation. diff --git a/views/controls/combobox/combobox.h b/views/controls/combobox/combobox.h index ccb9ea6..2b4c6705 100644 --- a/views/controls/combobox/combobox.h +++ b/views/controls/combobox/combobox.h @@ -79,9 +79,6 @@ class Combobox : public View { // The current selection. int selected_item_; - // The accessible name of this control. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(Combobox); }; diff --git a/views/controls/progress_bar.h b/views/controls/progress_bar.h index 345db81..38d04df 100644 --- a/views/controls/progress_bar.h +++ b/views/controls/progress_bar.h @@ -73,9 +73,6 @@ class ProgressBar : public View { // The view class name. static const char kViewClassName[]; - // The storage string for the accessibility name associated with this control. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(ProgressBar); }; diff --git a/views/controls/resize_gripper.h b/views/controls/resize_gripper.h index 8b46a629..cac32e2 100644 --- a/views/controls/resize_gripper.h +++ b/views/controls/resize_gripper.h @@ -59,9 +59,6 @@ class ResizeGripper : public ImageView { // The mouse position at start (in screen coordinates). int initial_position_; - // The storage string for the accessibility name associated with this control. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(ResizeGripper); }; diff --git a/views/controls/single_split_view.h b/views/controls/single_split_view.h index f11313d..b571067 100644 --- a/views/controls/single_split_view.h +++ b/views/controls/single_split_view.h @@ -83,9 +83,6 @@ class SingleSplitView : public views::View { bool resize_leading_on_bounds_change_; - // The accessible name of this view. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(SingleSplitView); }; diff --git a/views/controls/textfield/textfield.h b/views/controls/textfield/textfield.h index c0e125d..d2048a4 100644 --- a/views/controls/textfield/textfield.h +++ b/views/controls/textfield/textfield.h @@ -285,9 +285,6 @@ class Textfield : public View { // NativeControlWin. bool initialized_; - // The storage string for the accessibility name associated with this control. - std::wstring accessible_name_; - // Text to display when empty. string16 text_to_display_when_empty_; diff --git a/views/widget/root_view.h b/views/widget/root_view.h index aee0bf8..05887e1 100644 --- a/views/widget/root_view.h +++ b/views/widget/root_view.h @@ -318,9 +318,6 @@ class RootView : public View, // wrapped inside native components, and is used for the focus traversal. View* focus_traversable_parent_view_; - // Storage of strings needed for accessibility. - std::wstring accessible_name_; - // Tracks drag state for a view. View::DragInfo drag_info; diff --git a/views/window/non_client_view.h b/views/window/non_client_view.h index 54c04b7..0e736df 100644 --- a/views/window/non_client_view.h +++ b/views/window/non_client_view.h @@ -229,9 +229,6 @@ class NonClientView : public View { // dynamically as the system settings change. scoped_ptr<NonClientFrameView> frame_view_; - // The accessible name of this view. - std::wstring accessible_name_; - DISALLOW_COPY_AND_ASSIGN(NonClientView); }; |