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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.h

Issue 2012753003: DevTools: consolidate protocol generators for front-end, backend and type builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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) 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 class InspectorCSSAgent; 47 class InspectorCSSAgent;
48 class InspectorResourceContentLoader; 48 class InspectorResourceContentLoader;
49 class KURL; 49 class KURL;
50 class LocalFrame; 50 class LocalFrame;
51 class SharedBuffer; 51 class SharedBuffer;
52 class TextResourceDecoder; 52 class TextResourceDecoder;
53 class V8InspectorSession; 53 class V8InspectorSession;
54 54
55 using blink::protocol::Maybe; 55 using blink::protocol::Maybe;
56 56
57 class CORE_EXPORT InspectorPageAgent final : public InspectorBaseAgent<Inspector PageAgent, protocol::Page::Frontend>, public protocol::Page::Backend { 57 class CORE_EXPORT InspectorPageAgent final : public InspectorBaseAgent<protocol: :Page::Metainfo> {
58 WTF_MAKE_NONCOPYABLE(InspectorPageAgent); 58 WTF_MAKE_NONCOPYABLE(InspectorPageAgent);
59 public: 59 public:
60 class Client { 60 class Client {
61 public: 61 public:
62 virtual ~Client() { } 62 virtual ~Client() { }
63 virtual void pageLayoutInvalidated(bool resized) { } 63 virtual void pageLayoutInvalidated(bool resized) { }
64 virtual void setPausedInDebuggerMessage(const String&) { } 64 virtual void setPausedInDebuggerMessage(const String&) { }
65 virtual void waitForCreateWindow(LocalFrame*) { } 65 virtual void waitForCreateWindow(LocalFrame*) { }
66 }; 66 };
67 67
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 bool m_reloading; 155 bool m_reloading;
156 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader; 156 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader;
157 int m_resourceContentLoaderClientId; 157 int m_resourceContentLoaderClientId;
158 }; 158 };
159 159
160 160
161 } // namespace blink 161 } // namespace blink
162 162
163 163
164 #endif // !defined(InspectorPagerAgent_h) 164 #endif // !defined(InspectorPagerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698