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/WebAXObject.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 | « no previous file | public/web/WebBlob.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAXObject.h
diff --git a/public/web/WebAXObject.h b/public/web/WebAXObject.h
index 60b4853ab7e41b24a43c3ab6127efa1c7bf135f7..1595d141e164ee84fabdb571c2346118f21a5e57 100644
--- a/public/web/WebAXObject.h
+++ b/public/web/WebAXObject.h
@@ -40,10 +40,9 @@
namespace WTF { template <typename T> class PassRefPtr; }
#endif
-namespace blink { class AXObject; }
-
namespace blink {
+class AXObject;
class WebNode;
class WebDocument;
class WebString;
@@ -217,13 +216,13 @@ public:
BLINK_EXPORT void scrollToGlobalPoint(const WebPoint&) const;
#if BLINK_IMPLEMENTATION
- WebAXObject(const WTF::PassRefPtr<blink::AXObject>&);
- WebAXObject& operator=(const WTF::PassRefPtr<blink::AXObject>&);
- operator WTF::PassRefPtr<blink::AXObject>() const;
+ WebAXObject(const WTF::PassRefPtr<AXObject>&);
+ WebAXObject& operator=(const WTF::PassRefPtr<AXObject>&);
+ operator WTF::PassRefPtr<AXObject>() const;
#endif
private:
- WebPrivatePtr<blink::AXObject> m_private;
+ WebPrivatePtr<AXObject> m_private;
};
} // namespace blink
« no previous file with comments | « no previous file | public/web/WebBlob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698