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

Unified Diff: public/web/WebOptionElement.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/WebNotification.h ('k') | public/web/WebPageSerializer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebOptionElement.h
diff --git a/public/web/WebOptionElement.h b/public/web/WebOptionElement.h
index 7a336ae77d52df19cb2b7762115b0526b3c6ed17..dfbba7e730383727c2bcd206dab6911d2ef50b2f 100644
--- a/public/web/WebOptionElement.h
+++ b/public/web/WebOptionElement.h
@@ -34,12 +34,10 @@
#include "../platform/WebVector.h"
#include "WebElement.h"
-#if BLINK_IMPLEMENTATION
-namespace blink { class HTMLOptionElement; }
-#endif
-
namespace blink {
+class HTMLOptionElement;
+
// Provides readonly access to some properties of a DOM option element node.
class WebOptionElement : public WebElement {
public:
@@ -62,9 +60,9 @@ public:
BLINK_EXPORT bool isEnabled() const;
#if BLINK_IMPLEMENTATION
- WebOptionElement(const PassRefPtrWillBeRawPtr<blink::HTMLOptionElement>&);
- WebOptionElement& operator=(const PassRefPtrWillBeRawPtr<blink::HTMLOptionElement>&);
- operator PassRefPtrWillBeRawPtr<blink::HTMLOptionElement>() const;
+ WebOptionElement(const PassRefPtrWillBeRawPtr<HTMLOptionElement>&);
+ WebOptionElement& operator=(const PassRefPtrWillBeRawPtr<HTMLOptionElement>&);
+ operator PassRefPtrWillBeRawPtr<HTMLOptionElement>() const;
#endif
};
« no previous file with comments | « public/web/WebNotification.h ('k') | public/web/WebPageSerializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698