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

Unified Diff: public/web/WebInputElement.h

Issue 455883003: Cleanup namespace usage in public/web/Web[A-M]*.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/WebImageDecoder.h ('k') | public/web/WebLabelElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebInputElement.h
diff --git a/public/web/WebInputElement.h b/public/web/WebInputElement.h
index ff0d813fdeef8919d0758184c13863ea5d17efef..61856453b4bd5488a8c51299074689963bbc6bda 100644
--- a/public/web/WebInputElement.h
+++ b/public/web/WebInputElement.h
@@ -33,13 +33,10 @@
#include "WebFormControlElement.h"
-#if BLINK_IMPLEMENTATION
-namespace blink { class HTMLInputElement; }
-#endif
-
namespace blink {
- class WebElementCollection;
+class HTMLInputElement;
+class WebElementCollection;
// Provides readonly access to some properties of a DOM input element node.
class WebInputElement : public WebFormControlElement {
@@ -88,9 +85,9 @@ namespace blink {
BLINK_EXPORT void setShouldRevealPassword(bool value);
#if BLINK_IMPLEMENTATION
- WebInputElement(const PassRefPtrWillBeRawPtr<blink::HTMLInputElement>&);
- WebInputElement& operator=(const PassRefPtrWillBeRawPtr<blink::HTMLInputElement>&);
- operator PassRefPtrWillBeRawPtr<blink::HTMLInputElement>() const;
+ WebInputElement(const PassRefPtrWillBeRawPtr<HTMLInputElement>&);
+ WebInputElement& operator=(const PassRefPtrWillBeRawPtr<HTMLInputElement>&);
+ operator PassRefPtrWillBeRawPtr<HTMLInputElement>() const;
#endif
};
« no previous file with comments | « public/web/WebImageDecoder.h ('k') | public/web/WebLabelElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698