Cleanup forward declared classes that are not needed in chrome/renderer, chrome/test/, and chrome/views. Also fix some lint issues while I'm at it.
Review URL: http://codereview.chromium.org/20112
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9289 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/views/view.h b/chrome/views/view.h
index 52f2665..86511834 100644
--- a/chrome/views/view.h
+++ b/chrome/views/view.h
@@ -8,12 +8,14 @@
#include "build/build_config.h"
#if defined(OS_WIN)
-#include <atlbase.h>
-#include <atlapp.h>
-#include <atlmisc.h>
+#include <atlbase.h>
+#include <atlapp.h>
+#include <atlmisc.h>
#endif // defined(OS_WIN)
+#include <algorithm>
#include <map>
+#include <string>
#include <vector>
#include "base/gfx/rect.h"
@@ -30,7 +32,6 @@
class AccessibleWrapper;
class ChromeCanvas;
class OSExchangeData;
-class SkBitmap;
namespace views {
@@ -93,7 +94,7 @@
// View class
//
// A View is a rectangle within the views View hierarchy. It is the base
-/// class for all Views.
+// class for all Views.
//
// A View is a container of other Views (there is no such thing as a Leaf
// View - makes code simpler, reduces type conversion headaches, design
@@ -1331,4 +1332,3 @@
} // namespace views
#endif // CHROME_VIEWS_VIEW_H_
-