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

Side by Side Diff: Source/core/inspector/InspectorClient.h

Issue 650183003: Clean up forward declarations in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
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 16 matching lines...) Expand all
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
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)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCanvasAgent.h ('k') | Source/core/inspector/InspectorConsoleAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698