Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: Source/web/ColorChooserUIController.h

Issue 474183002: Cleanup namespace usage in Source/web/*.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/ColorChooserPopupUIController.h ('k') | Source/web/CompositionUnderlineBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ColorChooserUIController.h
diff --git a/Source/web/ColorChooserUIController.h b/Source/web/ColorChooserUIController.h
index 12ae7d54071b44787355ed57029d6b97f4b93102..cd027b3c737b8c22c43e205648e63752cfdcf44c 100644
--- a/Source/web/ColorChooserUIController.h
+++ b/Source/web/ColorChooserUIController.h
@@ -32,23 +32,20 @@
#include "wtf/OwnPtr.h"
namespace blink {
+
class ColorChooserClient;
class LocalFrame;
-}
-
-namespace blink {
-
class WebColorChooser;
-class ColorChooserUIController : public WebColorChooserClient, public blink::ColorChooser {
+class ColorChooserUIController : public WebColorChooserClient, public ColorChooser {
public:
- ColorChooserUIController(blink::LocalFrame*, blink::ColorChooserClient*);
+ ColorChooserUIController(LocalFrame*, ColorChooserClient*);
virtual ~ColorChooserUIController();
virtual void openUI();
// ColorChooser functions:
- virtual void setSelectedColor(const blink::Color&) OVERRIDE FINAL;
+ virtual void setSelectedColor(const Color&) OVERRIDE FINAL;
virtual void endChooser() OVERRIDE;
// WebColorChooserClient functions:
@@ -60,9 +57,8 @@ protected:
OwnPtr<WebColorChooser> m_chooser;
private:
-
- blink::LocalFrame* m_frame;
- blink::ColorChooserClient* m_client;
+ LocalFrame* m_frame;
+ ColorChooserClient* m_client;
};
}
« no previous file with comments | « Source/web/ColorChooserPopupUIController.h ('k') | Source/web/CompositionUnderlineBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698