summaryrefslogtreecommitdiffstats
path: root/views/widget/widget.h
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 23:08:41 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-19 23:08:41 +0000
commit42c35a5997f5b11522ee308c19d334146ac6895a (patch)
treecb46a30551e8eb5112a6c6ba4d9a9284e2dedcfe /views/widget/widget.h
parenta109d02492863aeb537dea09bfb445eb6f5d94c5 (diff)
downloadchromium_src-42c35a5997f5b11522ee308c19d334146ac6895a.zip
chromium_src-42c35a5997f5b11522ee308c19d334146ac6895a.tar.gz
chromium_src-42c35a5997f5b11522ee308c19d334146ac6895a.tar.bz2
Reverting 18872.
Broke the Windows build. BUG=None TEST=None TBR=ben Review URL: http://codereview.chromium.org/140023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/widget.h')
-rw-r--r--views/widget/widget.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/views/widget/widget.h b/views/widget/widget.h
index 9c4c5ef..1dabf08 100644
--- a/views/widget/widget.h
+++ b/views/widget/widget.h
@@ -17,7 +17,6 @@ class Rect;
namespace views {
class Accelerator;
-class FocusManager;
class RootView;
class TooltipManager;
class Window;
@@ -106,17 +105,13 @@ class Widget {
virtual Window* GetWindow() { return NULL; }
virtual const Window* GetWindow() const { return NULL; }
- // Gets the theme provider.
+ // Get the theme provider.
virtual ThemeProvider* GetThemeProvider() const { return NULL; }
- // Gets the default theme provider; this is necessary for when a widget has
+ // Get the default theme provider; this is necessary for when a widget has
// no profile (and ThemeProvider) associated with it. The default theme
// provider provides a default set of bitmaps that such widgets can use.
virtual ThemeProvider* GetDefaultThemeProvider() { return NULL; }
-
- // Returns the FocusManager for this widget.
- // Note that all widgets in a widget hierarchy share the same focus manager.
- virtual FocusManager* GetFocusManager() { return NULL; }
};
} // namespace views