summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/chromeos/frame/normal_browser_frame_view.h3
-rw-r--r--chrome/browser/views/accessible_toolbar_view.h3
-rw-r--r--chrome/browser/views/bookmark_bar_view.cc3
-rw-r--r--chrome/browser/views/extensions/extension_shelf.h3
-rw-r--r--chrome/browser/views/frame/browser_view.h3
-rw-r--r--chrome/browser/views/frame/opaque_browser_frame_view.h3
-rw-r--r--chrome/browser/views/infobars/infobar_container.h3
-rw-r--r--chrome/browser/views/infobars/infobars.h3
-rw-r--r--chrome/browser/views/location_bar_view.h3
-rw-r--r--chrome/browser/views/tab_contents/tab_contents_container.h3
-rw-r--r--chrome/browser/views/tabs/tab_strip.h3
11 files changed, 0 insertions, 33 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