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

Unified Diff: Source/web/InspectorOverlay.h

Issue 1355563003: Devtools: Rename InspectorOverlayImpl to InspectorOverlay (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address a comment Created 5 years, 3 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 | Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/InspectorOverlay.h
diff --git a/Source/web/InspectorOverlayImpl.h b/Source/web/InspectorOverlay.h
similarity index 91%
rename from Source/web/InspectorOverlayImpl.h
rename to Source/web/InspectorOverlay.h
index 57a4ed2ed5571351a9a5bd2a0bf21fc76d959934..c1edacdadd748540bb2e65c8c4d6d6e7b823bc0e 100644
--- a/Source/web/InspectorOverlayImpl.h
+++ b/Source/web/InspectorOverlay.h
@@ -26,8 +26,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef InspectorOverlayImpl_h
-#define InspectorOverlayImpl_h
+#ifndef InspectorOverlay_h
+#define InspectorOverlay_h
#include "core/InspectorTypeBuilder.h"
#include "core/inspector/InspectorDOMAgent.h"
@@ -61,21 +61,21 @@ class Page;
class PageOverlay;
class WebViewImpl;
-class InspectorOverlayImpl final
- : public NoBaseWillBeGarbageCollectedFinalized<InspectorOverlayImpl>
+class InspectorOverlay final
+ : public NoBaseWillBeGarbageCollectedFinalized<InspectorOverlay>
, public InspectorDOMAgent::Client
, public InspectorPageAgent::Client
, public InspectorProfilerAgent::Client
, public InspectorOverlayHost::Listener {
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(InspectorOverlayImpl);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorOverlayImpl);
+ WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(InspectorOverlay);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorOverlay);
public:
- static PassOwnPtrWillBeRawPtr<InspectorOverlayImpl> create(WebViewImpl* webViewImpl)
+ static PassOwnPtrWillBeRawPtr<InspectorOverlay> create(WebViewImpl* webViewImpl)
{
- return adoptPtrWillBeNoop(new InspectorOverlayImpl(webViewImpl));
+ return adoptPtrWillBeNoop(new InspectorOverlay(webViewImpl));
}
- ~InspectorOverlayImpl() override;
+ ~InspectorOverlay() override;
DECLARE_TRACE();
void init(InspectorCSSAgent*, InspectorDebuggerAgent*, InspectorDOMAgent*);
@@ -86,7 +86,7 @@ public:
PageOverlay* pageOverlay() { return m_pageOverlay.get(); };
private:
- explicit InspectorOverlayImpl(WebViewImpl*);
+ explicit InspectorOverlay(WebViewImpl*);
class InspectorOverlayChromeClient;
class InspectorPageOverlayDelegate;
@@ -128,7 +128,7 @@ private:
void reset(const IntSize& viewportSize, const IntPoint& documentScrollOffset);
void evaluateInOverlay(const String& method, const String& argument);
void evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument);
- void onTimer(Timer<InspectorOverlayImpl>*);
+ void onTimer(Timer<InspectorOverlay>*);
void rebuildOverlayPage();
void invalidate();
void scheduleUpdate();
@@ -154,7 +154,7 @@ private:
bool m_drawViewSizeWithGrid;
bool m_resizeTimerActive;
bool m_omitTooltip;
- Timer<InspectorOverlayImpl> m_timer;
+ Timer<InspectorOverlay> m_timer;
int m_suspendCount;
bool m_inLayout;
bool m_needsUpdate;
@@ -171,4 +171,4 @@ private:
} // namespace blink
-#endif // InspectorOverlayImpl_h
+#endif // InspectorOverlay_h
« no previous file with comments | « no previous file | Source/web/InspectorOverlay.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698