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

Unified Diff: public/web/WebTextAreaElement.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.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 | « public/web/WebSurroundingText.h ('k') | public/web/WebTextCheckingCompletion.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebTextAreaElement.h
diff --git a/public/web/WebTextAreaElement.h b/public/web/WebTextAreaElement.h
index ed324f7f2eb9481d52f061565e2d2c5f5ae372de..04b5e736808085ab3ed9e0c88bc003862cd39f88 100644
--- a/public/web/WebTextAreaElement.h
+++ b/public/web/WebTextAreaElement.h
@@ -33,12 +33,10 @@
#include "WebFormControlElement.h"
-#if BLINK_IMPLEMENTATION
-namespace blink { class HTMLTextAreaElement; }
-#endif
-
namespace blink {
+class HTMLTextAreaElement;
+
// Provides access to some properties of a DOM textarea element node.
class WebTextAreaElement : public WebFormControlElement {
public:
@@ -53,9 +51,9 @@ public:
void assign(const WebTextAreaElement& element) { WebFormControlElement::assign(element); }
#if BLINK_IMPLEMENTATION
- WebTextAreaElement(const PassRefPtrWillBeRawPtr<blink::HTMLTextAreaElement>&);
- WebTextAreaElement& operator=(const PassRefPtrWillBeRawPtr<blink::HTMLTextAreaElement>&);
- operator PassRefPtrWillBeRawPtr<blink::HTMLTextAreaElement>() const;
+ WebTextAreaElement(const PassRefPtrWillBeRawPtr<HTMLTextAreaElement>&);
+ WebTextAreaElement& operator=(const PassRefPtrWillBeRawPtr<HTMLTextAreaElement>&);
+ operator PassRefPtrWillBeRawPtr<HTMLTextAreaElement>() const;
#endif
};
« no previous file with comments | « public/web/WebSurroundingText.h ('k') | public/web/WebTextCheckingCompletion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698