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

Unified Diff: public/web/WebHistoryItem.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/WebGeolocationPosition.h ('k') | public/web/WebHitTestResult.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebHistoryItem.h
diff --git a/public/web/WebHistoryItem.h b/public/web/WebHistoryItem.h
index 1257b4310c4bf53a9d5bbfa573b9432125b70ce7..8029cbb22560569ec9329675880ce05caed6e81f 100644
--- a/public/web/WebHistoryItem.h
+++ b/public/web/WebHistoryItem.h
@@ -35,9 +35,9 @@
#include "../platform/WebPrivatePtr.h"
#include "../platform/WebReferrerPolicy.h"
-namespace blink { class HistoryItem; }
-
namespace blink {
+
+class HistoryItem;
class WebHTTPBody;
class WebString;
class WebSerializedScriptValue;
@@ -116,13 +116,13 @@ public:
BLINK_EXPORT WebVector<WebString> getReferencedFilePaths() const;
#if BLINK_IMPLEMENTATION
- WebHistoryItem(const WTF::PassRefPtr<blink::HistoryItem>&);
- WebHistoryItem& operator=(const WTF::PassRefPtr<blink::HistoryItem>&);
- operator WTF::PassRefPtr<blink::HistoryItem>() const;
+ WebHistoryItem(const WTF::PassRefPtr<HistoryItem>&);
+ WebHistoryItem& operator=(const WTF::PassRefPtr<HistoryItem>&);
+ operator WTF::PassRefPtr<HistoryItem>() const;
#endif
private:
- WebPrivatePtr<blink::HistoryItem> m_private;
+ WebPrivatePtr<HistoryItem> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebGeolocationPosition.h ('k') | public/web/WebHitTestResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698