| OLD | NEW |
| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 virtual void highlight(WebCore::Node*); | 53 virtual void highlight(WebCore::Node*); |
| 54 virtual void hideHighlight(); | 54 virtual void hideHighlight(); |
| 55 | 55 |
| 56 virtual bool sendMessageToFrontend(const WTF::String&); | 56 virtual bool sendMessageToFrontend(const WTF::String&); |
| 57 | 57 |
| 58 virtual void updateInspectorStateCookie(const WTF::String&); | 58 virtual void updateInspectorStateCookie(const WTF::String&); |
| 59 | 59 |
| 60 virtual void clearBrowserCache(); | 60 virtual void clearBrowserCache(); |
| 61 virtual void clearBrowserCookies(); | 61 virtual void clearBrowserCookies(); |
| 62 virtual void setCacheDisabled(bool); | |
| 63 private: | 62 private: |
| 64 WebDevToolsAgentImpl* devToolsAgent(); | 63 WebDevToolsAgentImpl* devToolsAgent(); |
| 65 | 64 |
| 66 // The WebViewImpl of the page being inspected; gets passed to the construct
or | 65 // The WebViewImpl of the page being inspected; gets passed to the construct
or |
| 67 WebViewImpl* m_inspectedWebView; | 66 WebViewImpl* m_inspectedWebView; |
| 68 }; | 67 }; |
| 69 | 68 |
| 70 } // namespace WebKit | 69 } // namespace WebKit |
| 71 | 70 |
| 72 #endif | 71 #endif |
| OLD | NEW |