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

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

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 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
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 virtual void callFunctionOn(ErrorString*, 69 virtual void callFunctionOn(ErrorString*,
70 const String& objectId, 70 const String& objectId,
71 const String& expression, 71 const String& expression,
72 const RefPtr<JSONArray>* optionalArguments, 72 const RefPtr<JSONArray>* optionalArguments,
73 const bool* doNotPauseOnExceptionsAndMuteConsole, 73 const bool* doNotPauseOnExceptionsAndMuteConsole,
74 const bool* returnByValue, 74 const bool* returnByValue,
75 const bool* generatePreview, 75 const bool* generatePreview,
76 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, 76 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
77 TypeBuilder::OptOutput<bool>* wasThrown) override final; 77 TypeBuilder::OptOutput<bool>* wasThrown) override final;
78 virtual void releaseObject(ErrorString*, const String& objectId) override fi nal; 78 virtual void releaseObject(ErrorString*, const String& objectId) override fi nal;
79 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<Ty peBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<Typ eBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) override f inal; 79 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<Ty peBuilder::Runtime::PropertyDescriptor>>& result, RefPtr<TypeBuilder::Array<Type Builder::Runtime::InternalPropertyDescriptor>>& internalProperties) override fin al;
80 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) ove rride final; 80 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) ove rride final;
81 virtual void run(ErrorString*) override; 81 virtual void run(ErrorString*) override;
82 virtual void isRunRequired(ErrorString*, bool* out_result) override; 82 virtual void isRunRequired(ErrorString*, bool* out_result) override;
83 virtual void setCustomObjectFormatterEnabled(ErrorString*, bool) override fi nal; 83 virtual void setCustomObjectFormatterEnabled(ErrorString*, bool) override fi nal;
84 84
85 virtual void setFrontend(InspectorFrontend*) override final; 85 virtual void setFrontend(InspectorFrontend*) override final;
86 virtual void clearFrontend() override final; 86 virtual void clearFrontend() override final;
87 virtual void restore() override final; 87 virtual void restore() override final;
88 88
89 protected: 89 protected:
(...skipping 13 matching lines...) Expand all
103 ScriptStateToId m_scriptStateToId; 103 ScriptStateToId m_scriptStateToId;
104 104
105 private: 105 private:
106 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 106 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
107 ScriptDebugServer* m_scriptDebugServer; 107 ScriptDebugServer* m_scriptDebugServer;
108 }; 108 };
109 109
110 } // namespace blink 110 } // namespace blink
111 111
112 #endif // InspectorRuntimeAgent_h 112 #endif // InspectorRuntimeAgent_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorResourceContentLoader.cpp ('k') | Source/core/inspector/InspectorRuntimeAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698