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

Unified Diff: Source/web/PopupMenuChromium.h

Issue 462613002: Cleanup namespace usage in Source/web/[A-V]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing comments 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 | « Source/web/PopupListBox.h ('k') | Source/web/ScrollbarGroup.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PopupMenuChromium.h
diff --git a/Source/web/PopupMenuChromium.h b/Source/web/PopupMenuChromium.h
index 061622be2259585df43daded5adf23d6dd2b2a0f..4c00929cc6034a6551789385c2b45cf9119d49aa 100644
--- a/Source/web/PopupMenuChromium.h
+++ b/Source/web/PopupMenuChromium.h
@@ -35,28 +35,25 @@
#include "wtf/RefPtr.h"
namespace blink {
+
class LocalFrame;
class FrameView;
-class PopupMenuClient;
-}
-
-namespace blink {
-
class PopupContainer;
+class PopupMenuClient;
-class PopupMenuChromium FINAL : public blink::PopupMenu {
+class PopupMenuChromium FINAL : public PopupMenu {
public:
- PopupMenuChromium(blink::LocalFrame&, blink::PopupMenuClient*);
+ PopupMenuChromium(LocalFrame&, PopupMenuClient*);
virtual ~PopupMenuChromium();
- virtual void show(const blink::FloatQuad& controlPosition, const blink::IntSize& controlSize, int index) OVERRIDE;
+ virtual void show(const FloatQuad& controlPosition, const IntSize& controlSize, int index) OVERRIDE;
virtual void hide() OVERRIDE;
virtual void updateFromElement() OVERRIDE;
virtual void disconnectClient() OVERRIDE;
private:
- blink::PopupMenuClient* m_popupClient;
- RefPtr<blink::FrameView> m_frameView;
+ PopupMenuClient* m_popupClient;
+ RefPtr<FrameView> m_frameView;
RefPtr<PopupContainer> m_popup;
};
« no previous file with comments | « Source/web/PopupListBox.h ('k') | Source/web/ScrollbarGroup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698