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

Side by Side Diff: Source/core/inspector/InspectorClient.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 | « no previous file | Source/core/inspector/InspectorController.h » ('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) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual void setShowPaintRects(bool) { } 64 virtual void setShowPaintRects(bool) { }
65 virtual void setShowDebugBorders(bool) { } 65 virtual void setShowDebugBorders(bool) { }
66 virtual void setShowFPSCounter(bool) { } 66 virtual void setShowFPSCounter(bool) { }
67 virtual void setContinuousPaintingEnabled(bool) { } 67 virtual void setContinuousPaintingEnabled(bool) { }
68 virtual void setShowScrollBottleneckRects(bool) { } 68 virtual void setShowScrollBottleneckRects(bool) { }
69 69
70 virtual void resetScrollAndPageScaleFactor() { } 70 virtual void resetScrollAndPageScaleFactor() { }
71 virtual float minimumPageScaleFactor() { return 1; } 71 virtual float minimumPageScaleFactor() { return 1; }
72 virtual float maximumPageScaleFactor() { return 1; } 72 virtual float maximumPageScaleFactor() { return 1; }
73 virtual void setPageScaleFactor(float) { } 73 virtual void setPageScaleFactor(float) { }
74 virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvide r>) { } 74 virtual void showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<Contex tMenuProvider>) { }
75 75
76 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) { } 76 virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) { }
77 virtual void dispatchMouseEvent(const PlatformMouseEvent&) { } 77 virtual void dispatchMouseEvent(const PlatformMouseEvent&) { }
78 78
79 virtual void resumeStartup() { } 79 virtual void resumeStartup() { }
80 80
81 protected: 81 protected:
82 virtual ~InspectorClient() { } 82 virtual ~InspectorClient() { }
83 }; 83 };
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif // !defined(InspectorClient_h) 87 #endif // !defined(InspectorClient_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698