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

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

Issue 147353007: DevTools: remove references to modules/webdatabase from core/inspector (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 public: 47 public:
48 explicit InspectorAgent(const String&); 48 explicit InspectorAgent(const String&);
49 virtual ~InspectorAgent(); 49 virtual ~InspectorAgent();
50 50
51 virtual void init() { } 51 virtual void init() { }
52 virtual void setFrontend(InspectorFrontend*) { } 52 virtual void setFrontend(InspectorFrontend*) { }
53 virtual void clearFrontend() { } 53 virtual void clearFrontend() { }
54 virtual void restore() { } 54 virtual void restore() { }
55 virtual void registerInDispatcher(InspectorBackendDispatcher*) = 0; 55 virtual void registerInDispatcher(InspectorBackendDispatcher*) = 0;
56 virtual void discardAgent() { } 56 virtual void discardAgent() { }
57 virtual void didCommitLoadForMainFrame() { }
57 58
58 String name() { return m_name; } 59 String name() { return m_name; }
59 void appended(InstrumentingAgents*, InspectorState*); 60 void appended(InstrumentingAgents*, InspectorState*);
60 61
61 protected: 62 protected:
62 InstrumentingAgents* m_instrumentingAgents; 63 InstrumentingAgents* m_instrumentingAgents;
63 InspectorState* m_state; 64 InspectorState* m_state;
64 65
65 private: 66 private:
66 String m_name; 67 String m_name;
(...skipping 28 matching lines...) Expand all
95 96
96 protected: 97 protected:
97 InspectorBaseAgent(const String& name) : InspectorAgent(name) 98 InspectorBaseAgent(const String& name) : InspectorAgent(name)
98 { 99 {
99 } 100 }
100 }; 101 };
101 102
102 } // namespace WebCore 103 } // namespace WebCore
103 104
104 #endif // !defined(InspectorBaseAgent_h) 105 #endif // !defined(InspectorBaseAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698