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

Unified Diff: Source/web/ColorChooserUIController.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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.cpp ('k') | Source/web/ColorChooserUIController.cpp » ('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 ee5a074361c2f4ab7fc319eb35865df87d3b940b..12ae7d54071b44787355ed57029d6b97f4b93102 100644
--- a/Source/web/ColorChooserUIController.h
+++ b/Source/web/ColorChooserUIController.h
@@ -31,7 +31,7 @@
#include "public/web/WebColorChooserClient.h"
#include "wtf/OwnPtr.h"
-namespace WebCore {
+namespace blink {
class ColorChooserClient;
class LocalFrame;
}
@@ -40,15 +40,15 @@ namespace blink {
class WebColorChooser;
-class ColorChooserUIController : public WebColorChooserClient, public WebCore::ColorChooser {
+class ColorChooserUIController : public WebColorChooserClient, public blink::ColorChooser {
public:
- ColorChooserUIController(WebCore::LocalFrame*, WebCore::ColorChooserClient*);
+ ColorChooserUIController(blink::LocalFrame*, blink::ColorChooserClient*);
virtual ~ColorChooserUIController();
virtual void openUI();
// ColorChooser functions:
- virtual void setSelectedColor(const WebCore::Color&) OVERRIDE FINAL;
+ virtual void setSelectedColor(const blink::Color&) OVERRIDE FINAL;
virtual void endChooser() OVERRIDE;
// WebColorChooserClient functions:
@@ -61,8 +61,8 @@ protected:
private:
- WebCore::LocalFrame* m_frame;
- WebCore::ColorChooserClient* m_client;
+ blink::LocalFrame* m_frame;
+ blink::ColorChooserClient* m_client;
};
}
« no previous file with comments | « Source/web/ColorChooserPopupUIController.cpp ('k') | Source/web/ColorChooserUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698