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

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

Issue 1767883002: DevTools: generate string16-based handlers for v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 2 Created 4 years, 9 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class DocumentLoader; 45 class DocumentLoader;
46 class InspectedFrames; 46 class InspectedFrames;
47 class InspectorCSSAgent; 47 class InspectorCSSAgent;
48 class InspectorDebuggerAgent; 48 class InspectorDebuggerAgent;
49 class InspectorResourceContentLoader; 49 class InspectorResourceContentLoader;
50 class KURL; 50 class KURL;
51 class LocalFrame; 51 class LocalFrame;
52 class SharedBuffer; 52 class SharedBuffer;
53 class TextResourceDecoder; 53 class TextResourceDecoder;
54 54
55 typedef String ErrorString;
56
57 using blink::protocol::Maybe; 55 using blink::protocol::Maybe;
58 56
59 class CORE_EXPORT InspectorPageAgent final : public InspectorBaseAgent<Inspector PageAgent, protocol::Frontend::Page>, public protocol::Dispatcher::PageCommandHa ndler { 57 class CORE_EXPORT InspectorPageAgent final : public InspectorBaseAgent<Inspector PageAgent, protocol::Frontend::Page>, public protocol::Dispatcher::PageCommandHa ndler {
60 WTF_MAKE_NONCOPYABLE(InspectorPageAgent); 58 WTF_MAKE_NONCOPYABLE(InspectorPageAgent);
61 public: 59 public:
62 class Client { 60 class Client {
63 public: 61 public:
64 virtual ~Client() { } 62 virtual ~Client() { }
65 virtual void pageLayoutInvalidated(bool resized) { } 63 virtual void pageLayoutInvalidated(bool resized) { }
66 virtual void setPausedInDebuggerMessage(const String&) { } 64 virtual void setPausedInDebuggerMessage(const String&) { }
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 bool m_reloading; 155 bool m_reloading;
158 156
159 RawPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; 157 RawPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader;
160 }; 158 };
161 159
162 160
163 } // namespace blink 161 } // namespace blink
164 162
165 163
166 #endif // !defined(InspectorPagerAgent_h) 164 #endif // !defined(InspectorPagerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698