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

Side by Side Diff: Source/web/InspectorClientImpl.h

Issue 665763002: Oilpan: move context menu providers to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated GC_PLUGIN_IGNORE() Created 6 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/CustomContextMenuProvider.cpp ('k') | Source/web/InspectorClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 virtual bool overridesShowPaintRects() override; 63 virtual bool overridesShowPaintRects() override;
64 virtual void setShowPaintRects(bool) override; 64 virtual void setShowPaintRects(bool) override;
65 virtual void setShowDebugBorders(bool) override; 65 virtual void setShowDebugBorders(bool) override;
66 virtual void setShowFPSCounter(bool) override; 66 virtual void setShowFPSCounter(bool) override;
67 virtual void setContinuousPaintingEnabled(bool) override; 67 virtual void setContinuousPaintingEnabled(bool) override;
68 virtual void setShowScrollBottleneckRects(bool) override; 68 virtual void setShowScrollBottleneckRects(bool) override;
69 virtual void resetScrollAndPageScaleFactor() override; 69 virtual void resetScrollAndPageScaleFactor() override;
70 virtual float minimumPageScaleFactor() override; 70 virtual float minimumPageScaleFactor() override;
71 virtual float maximumPageScaleFactor() override; 71 virtual float maximumPageScaleFactor() override;
72 virtual void setPageScaleFactor(float) override; 72 virtual void setPageScaleFactor(float) override;
73 virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvide r>) override; 73 virtual void showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<Contex tMenuProvider>) override;
74 74
75 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) override; 75 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) override;
76 virtual void dispatchMouseEvent(const PlatformMouseEvent&) override; 76 virtual void dispatchMouseEvent(const PlatformMouseEvent&) override;
77 77
78 virtual void setTraceEventCallback(const String& categoryFilter, TraceEventC allback) override; 78 virtual void setTraceEventCallback(const String& categoryFilter, TraceEventC allback) override;
79 virtual void resetTraceEventCallback() override; 79 virtual void resetTraceEventCallback() override;
80 virtual void enableTracing(const String& categoryFilter) override; 80 virtual void enableTracing(const String& categoryFilter) override;
81 virtual void disableTracing() override; 81 virtual void disableTracing() override;
82 82
83 virtual void startGPUEventsRecording() override; 83 virtual void startGPUEventsRecording() override;
84 virtual void stopGPUEventsRecording() override; 84 virtual void stopGPUEventsRecording() override;
85 85
86 virtual void resumeStartup() override; 86 virtual void resumeStartup() override;
87 87
88 private: 88 private:
89 WebDevToolsAgentImpl* devToolsAgent(); 89 WebDevToolsAgentImpl* devToolsAgent();
90 90
91 // The WebViewImpl of the page being inspected; gets passed to the construct or 91 // The WebViewImpl of the page being inspected; gets passed to the construct or
92 WebViewImpl* m_inspectedWebView; 92 WebViewImpl* m_inspectedWebView;
93 }; 93 };
94 94
95 } // namespace blink 95 } // namespace blink
96 96
97 #endif 97 #endif
OLDNEW
« no previous file with comments | « Source/core/page/CustomContextMenuProvider.cpp ('k') | Source/web/InspectorClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698