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

Unified Diff: Source/web/ExternalPopupMenu.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/ExternalDateTimeChooser.cpp ('k') | Source/web/ExternalPopupMenu.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ExternalPopupMenu.h
diff --git a/Source/web/ExternalPopupMenu.h b/Source/web/ExternalPopupMenu.h
index 354ec7d164f60cc190bfb2fa6625826ed2768c09..037a74aa087c67d6c6b86c3ad4f78e63446dfa1c 100644
--- a/Source/web/ExternalPopupMenu.h
+++ b/Source/web/ExternalPopupMenu.h
@@ -37,7 +37,7 @@
#include "public/platform/WebScrollbar.h"
#include "public/web/WebExternalPopupMenuClient.h"
-namespace WebCore {
+namespace blink {
class FloatQuad;
class LocalFrame;
class FrameView;
@@ -55,14 +55,14 @@ class WebMouseEvent;
// The ExternalPopupMenu connects the actual implementation of the popup menu
// to the WebCore popup menu.
-class ExternalPopupMenu FINAL : public WebCore::PopupMenu, public WebExternalPopupMenuClient {
+class ExternalPopupMenu FINAL : public blink::PopupMenu, public WebExternalPopupMenuClient {
public:
- ExternalPopupMenu(WebCore::LocalFrame&, WebCore::PopupMenuClient*, WebViewImpl&);
+ ExternalPopupMenu(blink::LocalFrame&, blink::PopupMenuClient*, WebViewImpl&);
virtual ~ExternalPopupMenu();
private:
- // WebCore::PopupMenu methods:
- virtual void show(const WebCore::FloatQuad& controlPosition, const WebCore::IntSize&, int index) OVERRIDE;
+ // blink::PopupMenu methods:
+ virtual void show(const blink::FloatQuad& controlPosition, const blink::IntSize&, int index) OVERRIDE;
virtual void hide() OVERRIDE;
virtual void updateFromElement() OVERRIDE;
virtual void disconnectClient() OVERRIDE;
@@ -73,16 +73,16 @@ private:
virtual void didAcceptIndices(const WebVector<int>& indices) OVERRIDE;
virtual void didCancel() OVERRIDE;
- void dispatchEvent(WebCore::Timer<ExternalPopupMenu>*);
+ void dispatchEvent(blink::Timer<ExternalPopupMenu>*);
// Fills |info| with the popup menu information contained in the
- // WebCore::PopupMenuClient associated with this ExternalPopupMenu.
+ // blink::PopupMenuClient associated with this ExternalPopupMenu.
void getPopupMenuInfo(WebPopupMenuInfo* info);
- WebCore::PopupMenuClient* m_popupMenuClient;
- RefPtr<WebCore::FrameView> m_frameView;
+ blink::PopupMenuClient* m_popupMenuClient;
+ RefPtr<blink::FrameView> m_frameView;
WebViewImpl& m_webView;
OwnPtr<WebMouseEvent> m_syntheticEvent;
- WebCore::Timer<ExternalPopupMenu> m_dispatchEventTimer;
+ blink::Timer<ExternalPopupMenu> m_dispatchEventTimer;
// The actual implementor of the show menu.
WebExternalPopupMenu* m_webExternalPopupMenu;
};
« no previous file with comments | « Source/web/ExternalDateTimeChooser.cpp ('k') | Source/web/ExternalPopupMenu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698