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

Side by Side Diff: Source/bindings/core/dart/DartInspectorRuntimeAgent.h

Issue 1672443003: Fix devtools bugs Fix a spurious layout test failure (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void getCompletions(ErrorString*, 79 void getCompletions(ErrorString*,
80 const String& expression, 80 const String& expression,
81 const int* executionContextId, 81 const int* executionContextId,
82 RefPtr<TypeBuilder::Array<String> >& result); 82 RefPtr<TypeBuilder::Array<String> >& result);
83 83
84 void releaseObjectGroup(ErrorString*, const String& objectGroup); 84 void releaseObjectGroup(ErrorString*, const String& objectGroup);
85 85
86 void getProperties(ErrorString*, const String& objectId, const bool* ownProp erties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilde r::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder ::Runtime::InternalPropertyDescriptor> >& internalProperties); 86 void getProperties(ErrorString*, const String& objectId, const bool* ownProp erties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilde r::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder ::Runtime::InternalPropertyDescriptor> >& internalProperties);
87 void getProperty(ErrorString*, const String& objectId, const RefPtr<JSONArra y>& propertyPath, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilde r::OptOutput<bool>* wasThrown); 87 void getProperty(ErrorString*, const String& objectId, const RefPtr<JSONArra y>& propertyPath, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilde r::OptOutput<bool>* wasThrown);
88 88
89 int addExecutionContextToFrontendHelper(DartScriptState*, bool isPageContext , const String& name, const String& frameId); 89 void addExecutionContextToFrontendHelper(DartScriptState*, bool isPageContex t, const String& name, const String& frameId);
90 private: 90 private:
91 DartInjectedScript* injectedScriptForEval(ErrorString*, const int* execution ContextId); 91 DartInjectedScript* injectedScriptForEval(ErrorString*, const int* execution ContextId);
92 92
93 DartInjectedScriptManager* m_injectedScriptManager; 93 DartInjectedScriptManager* m_injectedScriptManager;
94 InspectorRuntimeAgent* m_inspectorRuntimeAgent; 94 InspectorRuntimeAgent* m_inspectorRuntimeAgent;
95 }; 95 };
96 96
97 } // namespace blink 97 } // namespace blink
98 98
99 #endif // InspectorRuntimeAgent_h 99 #endif // InspectorRuntimeAgent_h
OLDNEW
« no previous file with comments | « Source/bindings/core/dart/DartInspectorDebuggerAgent.cpp ('k') | Source/bindings/core/dart/DartInspectorRuntimeAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698