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

Side by Side Diff: Source/WebKit/chromium/src/WebPopupMenuImpl.h

Issue 10199014: Merge 114800 - [chromium] Plumb a compositor surface ready notification through to the threaded com… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 // WebWidget functions: 68 // WebWidget functions:
69 virtual void close() OVERRIDE; 69 virtual void close() OVERRIDE;
70 virtual WebSize size() OVERRIDE { return m_size; } 70 virtual WebSize size() OVERRIDE { return m_size; }
71 virtual void willStartLiveResize() OVERRIDE; 71 virtual void willStartLiveResize() OVERRIDE;
72 virtual void resize(const WebSize&) OVERRIDE; 72 virtual void resize(const WebSize&) OVERRIDE;
73 virtual void willEndLiveResize() OVERRIDE; 73 virtual void willEndLiveResize() OVERRIDE;
74 virtual void animate(double frameBeginTime) OVERRIDE; 74 virtual void animate(double frameBeginTime) OVERRIDE;
75 virtual void layout() OVERRIDE; 75 virtual void layout() OVERRIDE;
76 virtual void paint(WebCanvas*, const WebRect&) OVERRIDE; 76 virtual void paint(WebCanvas*, const WebRect&) OVERRIDE;
77 virtual void themeChanged() OVERRIDE; 77 virtual void themeChanged() OVERRIDE;
78 virtual void setCompositorSurfaceReady() OVERRIDE;
78 virtual void composite(bool finish) OVERRIDE; 79 virtual void composite(bool finish) OVERRIDE;
79 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE; 80 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE;
80 virtual void mouseCaptureLost() OVERRIDE; 81 virtual void mouseCaptureLost() OVERRIDE;
81 virtual void setFocus(bool enable) OVERRIDE; 82 virtual void setFocus(bool enable) OVERRIDE;
82 virtual bool setComposition( 83 virtual bool setComposition(
83 const WebString& text, 84 const WebString& text,
84 const WebVector<WebCompositionUnderline>& underlines, 85 const WebVector<WebCompositionUnderline>& underlines,
85 int selectionStart, int selectionEnd) OVERRIDE; 86 int selectionStart, int selectionEnd) OVERRIDE;
86 virtual bool confirmComposition() OVERRIDE; 87 virtual bool confirmComposition() OVERRIDE;
87 virtual bool confirmComposition(const WebString& text) OVERRIDE; 88 virtual bool confirmComposition(const WebString& text) OVERRIDE;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 WebPoint m_lastMousePosition; 138 WebPoint m_lastMousePosition;
138 139
139 // This is a non-owning ref. The popup will notify us via popupClosed() 140 // This is a non-owning ref. The popup will notify us via popupClosed()
140 // before it is destroyed. 141 // before it is destroyed.
141 WebCore::FramelessScrollView* m_widget; 142 WebCore::FramelessScrollView* m_widget;
142 }; 143 };
143 144
144 } // namespace WebKit 145 } // namespace WebKit
145 146
146 #endif 147 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebLayerTreeView.cpp ('k') | Source/WebKit/chromium/src/WebPopupMenuImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698