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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorMemoryAgent.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 19 matching lines...) Expand all
30 30
31 #ifndef InspectorMemoryAgent_h 31 #ifndef InspectorMemoryAgent_h
32 #define InspectorMemoryAgent_h 32 #define InspectorMemoryAgent_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "core/inspector/InspectorBaseAgent.h" 35 #include "core/inspector/InspectorBaseAgent.h"
36 #include "wtf/PassOwnPtr.h" 36 #include "wtf/PassOwnPtr.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 typedef String ErrorString;
41
42 class CORE_EXPORT InspectorMemoryAgent final : public InspectorBaseAgent<Inspect orMemoryAgent, protocol::Frontend::Memory>, public protocol::Dispatcher::MemoryC ommandHandler { 40 class CORE_EXPORT InspectorMemoryAgent final : public InspectorBaseAgent<Inspect orMemoryAgent, protocol::Frontend::Memory>, public protocol::Dispatcher::MemoryC ommandHandler {
43 WTF_MAKE_NONCOPYABLE(InspectorMemoryAgent); 41 WTF_MAKE_NONCOPYABLE(InspectorMemoryAgent);
44 public: 42 public:
45 static PassOwnPtrWillBeRawPtr<InspectorMemoryAgent> create() 43 static PassOwnPtrWillBeRawPtr<InspectorMemoryAgent> create()
46 { 44 {
47 return adoptPtrWillBeNoop(new InspectorMemoryAgent()); 45 return adoptPtrWillBeNoop(new InspectorMemoryAgent());
48 } 46 }
49 ~InspectorMemoryAgent() override; 47 ~InspectorMemoryAgent() override;
50 48
51 void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventLi steners) override; 49 void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventLi steners) override;
52 50
53 private: 51 private:
54 InspectorMemoryAgent(); 52 InspectorMemoryAgent();
55 }; 53 };
56 54
57 } // namespace blink 55 } // namespace blink
58 56
59 #endif // !defined(InspectorMemoryAgent_h) 57 #endif // !defined(InspectorMemoryAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698