OLD | NEW |
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 16 matching lines...) Expand all Loading... |
27 #ifndef InspectorClient_h | 27 #ifndef InspectorClient_h |
28 #define InspectorClient_h | 28 #define InspectorClient_h |
29 | 29 |
30 #include "core/inspector/InspectorStateClient.h" | 30 #include "core/inspector/InspectorStateClient.h" |
31 #include "core/page/ContextMenuProvider.h" | 31 #include "core/page/ContextMenuProvider.h" |
32 #include "wtf/Forward.h" | 32 #include "wtf/Forward.h" |
33 #include "wtf/PassRefPtr.h" | 33 #include "wtf/PassRefPtr.h" |
34 | 34 |
35 namespace blink { | 35 namespace blink { |
36 | 36 |
37 class IntPoint; | |
38 class PlatformKeyboardEvent; | 37 class PlatformKeyboardEvent; |
39 class PlatformMouseEvent; | 38 class PlatformMouseEvent; |
40 | 39 |
41 class InspectorClient : public InspectorStateClient { | 40 class InspectorClient : public InspectorStateClient { |
42 public: | 41 public: |
43 virtual void highlight() = 0; | 42 virtual void highlight() = 0; |
44 virtual void hideHighlight() = 0; | 43 virtual void hideHighlight() = 0; |
45 | 44 |
46 virtual void clearBrowserCache() { } | 45 virtual void clearBrowserCache() { } |
47 virtual void clearBrowserCookies() { } | 46 virtual void clearBrowserCookies() { } |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 78 |
80 virtual void resumeStartup() { } | 79 virtual void resumeStartup() { } |
81 | 80 |
82 protected: | 81 protected: |
83 virtual ~InspectorClient() { } | 82 virtual ~InspectorClient() { } |
84 }; | 83 }; |
85 | 84 |
86 } // namespace blink | 85 } // namespace blink |
87 | 86 |
88 #endif // !defined(InspectorClient_h) | 87 #endif // !defined(InspectorClient_h) |
OLD | NEW |