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

Unified Diff: Source/web/ColorChooserPopupUIController.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/ChromeClientImpl.cpp ('k') | Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ColorChooserPopupUIController.h
diff --git a/Source/web/ColorChooserPopupUIController.h b/Source/web/ColorChooserPopupUIController.h
index 3b882a4dd2ed141647355f3b212701a06d98f5a1..d8936770b447ac6cc42f03cc87cbd5c94b17aa97 100644
--- a/Source/web/ColorChooserPopupUIController.h
+++ b/Source/web/ColorChooserPopupUIController.h
@@ -30,7 +30,7 @@
#include "web/ColorChooserUIController.h"
#include "wtf/OwnPtr.h"
-namespace WebCore {
+namespace blink {
class ColorChooserClient;
class PagePopup;
}
@@ -39,10 +39,10 @@ namespace blink {
class ChromeClientImpl;
-class ColorChooserPopupUIController FINAL : public ColorChooserUIController, public WebCore::PagePopupClient {
+class ColorChooserPopupUIController FINAL : public ColorChooserUIController, public blink::PagePopupClient {
public:
- ColorChooserPopupUIController(WebCore::LocalFrame*, ChromeClientImpl*, WebCore::ColorChooserClient*);
+ ColorChooserPopupUIController(blink::LocalFrame*, ChromeClientImpl*, blink::ColorChooserClient*);
virtual ~ColorChooserPopupUIController();
// ColorChooserUIController functions:
@@ -52,9 +52,9 @@ public:
void endChooser() OVERRIDE;
// PagePopupClient functions:
- virtual WebCore::IntSize contentSize() OVERRIDE;
- virtual void writeDocument(WebCore::SharedBuffer*) OVERRIDE;
- virtual WebCore::Locale& locale() OVERRIDE;
+ virtual blink::IntSize contentSize() OVERRIDE;
+ virtual void writeDocument(blink::SharedBuffer*) OVERRIDE;
+ virtual blink::Locale& locale() OVERRIDE;
virtual void setValueAndClosePopup(int, const String&) OVERRIDE;
virtual void setValue(const String&) OVERRIDE;
virtual void closePopup() OVERRIDE;
@@ -64,9 +64,9 @@ private:
void openPopup();
ChromeClientImpl* m_chromeClient;
- WebCore::ColorChooserClient* m_client;
- WebCore::PagePopup* m_popup;
- WebCore::Locale& m_locale;
+ blink::ColorChooserClient* m_client;
+ blink::PagePopup* m_popup;
+ blink::Locale& m_locale;
};
}
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/ColorChooserPopupUIController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698