HomeSort by relevance Sort by last modified time
    Searched refs:ErrorString (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.h 42 typedef String ErrorString;
55 virtual void enable(ErrorString*) OVERRIDE;
56 virtual void disable(ErrorString*) OVERRIDE;
57 virtual void requestDatabaseNames(ErrorString*, const String& securityOrigin, PassRefPtrWillBeRawPtr<RequestDatabaseNamesCallback>) OVERRIDE;
58 virtual void requestDatabase(ErrorString*, const String& securityOrigin, const String& databaseName, PassRefPtrWillBeRawPtr<RequestDatabaseCallback>) OVERRIDE;
59 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtrWillBeRawPtr<RequestDataCallback>) OVERRIDE;
60 virtual void clearObjectStore(ErrorString*, const String& in_securityOrigin, const String& in_databaseName, const String& in_objectStoreName, PassRefPtrWillBeRawPtr<ClearObjectStoreCallback>) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModule.h 56 void captureFrame(ErrorString*, TypeBuilder::Canvas::TraceLogId*);
57 void startCapturing(ErrorString*, TypeBuilder::Canvas::TraceLogId*);
58 void stopCapturing(ErrorString*, const TypeBuilder::Canvas::TraceLogId&);
59 void dropTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&);
60 void traceLog(ErrorString*, const String&, const int*, const int*, RefPtr<TypeBuilder::Canvas::TraceLog>*);
61 void replayTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, RefPtr<TypeBuilder::Canvas::ResourceState>*, double*);
62 void resourceState(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, const TypeBuilder::Canvas::ResourceId&, RefPtr<TypeBuilder::Canvas::ResourceState>*);
63 void evaluateTraceLogCallArgument(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, int, const String&, RefPtr<TypeBuilder::Runtime::RemoteObject>*, RefPtr<TypeBuilder::Canvas::ResourceState>*);
67 void callStartCapturingFunction(const String&, ErrorString*, String*);
68 void callVoidFunctionWithTraceLogIdArgument(const String&, ErrorString*, const String&)
    [all...]
InspectorLayerTreeAgent.h 50 typedef String ErrorString;
74 virtual void enable(ErrorString*) OVERRIDE;
75 virtual void disable(ErrorString*) OVERRIDE;
76 virtual void compositingReasons(ErrorString*, const String& layerId, RefPtr<TypeBuilder::Array<String> >&) OVERRIDE;
77 virtual void makeSnapshot(ErrorString*, const String& layerId, String* snapshotId) OVERRIDE;
78 virtual void loadSnapshot(ErrorString*, const String& data, String* snapshotId) OVERRIDE;
79 virtual void releaseSnapshot(ErrorString*, const String& snapshotId) OVERRIDE;
80 virtual void replaySnapshot(ErrorString*, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) OVERRIDE;
81 virtual void profileSnapshot(ErrorString*, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >&) OVERRIDE;
82 virtual void snapshotCommandLog(ErrorString*, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject> >&) OVERRIDE
    [all...]
InspectorCanvasAgent.h 53 typedef String ErrorString;
77 virtual void enable(ErrorString*) OVERRIDE;
78 virtual void disable(ErrorString*) OVERRIDE;
79 virtual void dropTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&) OVERRIDE;
80 virtual void hasUninstrumentedCanvases(ErrorString*, bool*) OVERRIDE;
81 virtual void captureFrame(ErrorString*, const TypeBuilder::Page::FrameId*, TypeBuilder::Canvas::TraceLogId*) OVERRIDE;
82 virtual void startCapturing(ErrorString*, const TypeBuilder::Page::FrameId*, TypeBuilder::Canvas::TraceLogId*) OVERRIDE;
83 virtual void stopCapturing(ErrorString*, const TypeBuilder::Canvas::TraceLogId&) OVERRIDE;
84 virtual void getTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, const int*, const int*, RefPtr<TypeBuilder::Canvas::TraceLog>&) OVERRIDE;
85 virtual void replayTraceLog(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, RefPtr<TypeBuilder::Canvas::ResourceState>&, double (…)
    [all...]
InspectorHeapProfilerAgent.h 49 typedef String ErrorString;
59 virtual void collectGarbage(ErrorString*) OVERRIDE;
61 virtual void enable(ErrorString*) OVERRIDE;
62 virtual void disable(ErrorString*) OVERRIDE;
63 virtual void startTrackingHeapObjects(ErrorString*, const bool* trackAllocations) OVERRIDE;
64 virtual void stopTrackingHeapObjects(ErrorString*, const bool* reportProgress) OVERRIDE;
70 virtual void takeHeapSnapshot(ErrorString*, const bool* reportProgress) OVERRIDE;
72 virtual void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) OVERRIDE;
73 virtual void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) OVERRIDE;
InspectorRuntimeAgent.h 48 typedef String ErrorString;
57 virtual void enable(ErrorString*) OVERRIDE;
58 virtual void disable(ErrorString*) OVERRIDE FINAL;
59 virtual void evaluate(ErrorString*,
70 virtual void callFunctionOn(ErrorString*,
79 virtual void releaseObject(ErrorString*, const String& objectId) OVERRIDE FINAL;
80 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) OVERRIDE FINAL;
81 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) OVERRIDE FINAL;
82 virtual void run(ErrorString*) OVERRIDE;
83 virtual void isRunRequired(ErrorString*, bool* out_result) OVERRIDE
    [all...]
InspectorPageAgent.h 63 typedef String ErrorString;
99 virtual void enable(ErrorString*) OVERRIDE;
100 virtual void disable(ErrorString*) OVERRIDE;
101 virtual void addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* result) OVERRIDE;
102 virtual void removeScriptToEvaluateOnLoad(ErrorString*, const String& identifier) OVERRIDE;
103 virtual void reload(ErrorString*, const bool* optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad, const String* optionalScriptPreprocessor) OVERRIDE;
104 virtual void navigate(ErrorString*, const String& url, String* frameId) OVERRIDE;
105 virtual void getCookies(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> >& cookies) OVERRIDE;
106 virtual void deleteCookie(ErrorString*, const String& cookieName, const String& url) OVERRIDE;
107 virtual void getResourceTree(ErrorString*, RefPtr<TypeBuilder::Page::FrameResourceTree>&) OVERRIDE
    [all...]
InspectorWorkerAgent.h 45 typedef String ErrorString;
63 virtual void enable(ErrorString*) OVERRIDE;
64 virtual void disable(ErrorString*) OVERRIDE;
65 virtual void canInspectWorkers(ErrorString*, bool*) OVERRIDE;
66 virtual void connectToWorker(ErrorString*, int workerId) OVERRIDE;
67 virtual void disconnectFromWorker(ErrorString*, int workerId) OVERRIDE;
68 virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<JSONObject>& message) OVERRIDE;
69 virtual void setAutoconnectToWorkers(ErrorString*, bool value) OVERRIDE;
DOMEditor.h 45 typedef String ErrorString;
64 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anchorNode, ErrorString*);
65 bool removeChild(Node* parentNode, Node*, ErrorString*);
66 bool setAttribute(Element*, const String& name, const String& value, ErrorString*);
67 bool removeAttribute(Element*, const String& name, ErrorString*);
68 bool setOuterHTML(Node*, const String& html, Node** newNode, ErrorString*);
69 bool replaceWholeText(Text*, const String& text, ErrorString*);
InspectorDOMStorageAgent.h 47 typedef String ErrorString;
63 virtual void enable(ErrorString*) OVERRIDE;
64 virtual void disable(ErrorString*) OVERRIDE;
65 virtual void getDOMStorageItems(ErrorString*, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) OVERRIDE;
66 virtual void setDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, const String& value) OVERRIDE;
67 virtual void removeDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key) OVERRIDE;
77 PassOwnPtrWillBeRawPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
InspectorProfilerAgent.h 53 typedef String ErrorString;
66 virtual void enable(ErrorString*) OVERRIDE;
67 virtual void disable(ErrorString*) OVERRIDE;
68 virtual void setSamplingInterval(ErrorString*, int) OVERRIDE;
69 virtual void start(ErrorString*) OVERRIDE;
70 virtual void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>&) OVERRIDE;
85 void stop(ErrorString*, RefPtr<TypeBuilder::Profiler::CPUProfile>*);
InspectorDOMAgent.h 70 typedef String ErrorString;
116 virtual void enable(ErrorString*) OVERRIDE;
117 virtual void disable(ErrorString*) OVERRIDE;
118 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId) OVERRIDE;
119 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) OVERRIDE;
120 virtual void getDocument(ErrorString*, RefPtr<TypeBuilder::DOM::Node>& root) OVERRIDE;
121 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth) OVERRIDE;
122 virtual void setAttributeValue(ErrorString*, int elementId, const String& name, const String& value) OVERRIDE;
123 virtual void setAttributesAsText(ErrorString*, int elementId, const String& text, const String* name) OVERRIDE;
124 virtual void removeAttribute(ErrorString*, int elementId, const String& name) OVERRIDE
    [all...]
InspectorInputAgent.h 43 typedef String ErrorString;
57 virtual void dispatchKeyEvent(ErrorString*, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey) OVERRIDE;
58 virtual void dispatchMouseEvent(ErrorString*, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount) OVERRIDE;
59 virtual void dispatchTouchEvent(ErrorString*, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp) OVERRIDE;
WorkerRuntimeAgent.h 51 virtual void enable(ErrorString*) OVERRIDE;
54 virtual void run(ErrorString*) OVERRIDE;
55 virtual void isRunRequired(ErrorString*, bool* out_result) OVERRIDE;
61 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
InspectorDOMDebuggerAgent.h 56 typedef String ErrorString;
72 virtual void setXHRBreakpoint(ErrorString*, const String& url) OVERRIDE;
73 virtual void removeXHRBreakpoint(ErrorString*, const String& url) OVERRIDE;
74 virtual void setEventListenerBreakpoint(ErrorString*, const String& eventName, const String* targetName) OVERRIDE;
75 virtual void removeEventListenerBreakpoint(ErrorString*, const String& eventName, const String* targetName) OVERRIDE;
76 virtual void setInstrumentationBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
77 virtual void removeInstrumentationBreakpoint(ErrorString*, const String& eventName) OVERRIDE;
78 virtual void setDOMBreakpoint(ErrorString*, int nodeId, const String& type) OVERRIDE;
79 virtual void removeDOMBreakpoint(ErrorString*, int nodeId, const String& type) OVERRIDE;
131 void setBreakpoint(ErrorString*, const String& eventName, const String* targetName)
    [all...]
InspectorConsoleAgent.h 63 typedef String ErrorString;
73 virtual void enable(ErrorString*) OVERRIDE FINAL;
74 virtual void disable(ErrorString*) OVERRIDE FINAL;
75 virtual void clearMessages(ErrorString*) OVERRIDE;
85 void setTracingBasedTimeline(ErrorString*, bool enabled);
96 virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) OVERRIDE;
97 virtual void addInspectedNode(ErrorString*, int nodeId) = 0;
98 virtual void addInspectedHeapObject(ErrorString*, int inspectedHeapObjectId) OVERRIDE;
InspectorMemoryAgent.h 42 typedef String ErrorString;
53 virtual void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventListeners) OVERRIDE;
InspectorApplicationCacheAgent.h 41 typedef String ErrorString;
64 virtual void enable(ErrorString*) OVERRIDE;
65 virtual void getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result) OVERRIDE;
66 virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) OVERRIDE;
67 virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&) OVERRIDE;
75 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
InjectedScript.h 54 ErrorString*,
64 ErrorString*,
73 ErrorString*,
85 void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result);
86 void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
87 void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
88 void getFunctionDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>* result);
89 void getCollectionEntries(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CollectionEntry> >* result);
90 void getProperties(ErrorString*, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >* result);
91 void getInternalProperties(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescript (…)
    [all...]
InspectorDebuggerAgent.h 76 typedef String ErrorString;
93 virtual void canSetScriptSource(ErrorString*, bool* result) OVERRIDE FINAL { *result = true; }
108 virtual void enable(ErrorString*) OVERRIDE FINAL;
109 virtual void disable(ErrorString*) OVERRIDE FINAL;
110 virtual void setBreakpointsActive(ErrorString*, bool active) OVERRIDE FINAL;
111 virtual void setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload) OVERRIDE FINAL;
113 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations) OVERRIDE FINAL;
114 virtual void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation) OVERRIDE FINAL;
115 virtual void removeBreakpoint(ErrorString*, const String& breakpointId) OVERRIDE FINAL;
116 virtual void continueToLocation(ErrorString*, const RefPtr<JSONObject>& location, const bool* interstateLocationOpt) OVERRIDE FINAL
    [all...]
InspectorResourceAgent.h 73 typedef String ErrorString;
133 virtual void enable(ErrorString*) OVERRIDE;
134 virtual void disable(ErrorString*) OVERRIDE;
135 virtual void setUserAgentOverride(ErrorString*, const String& userAgent) OVERRIDE;
136 virtual void setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>&) OVERRIDE;
137 virtual void getResponseBody(ErrorString*, const String& requestId, String* content, bool* base64Encoded) OVERRIDE;
139 virtual void replayXHR(ErrorString*, const String& requestId) OVERRIDE;
141 virtual void canClearBrowserCache(ErrorString*, bool*) OVERRIDE;
142 virtual void canClearBrowserCookies(ErrorString*, bool*) OVERRIDE;
143 virtual void emulateNetworkConditions(ErrorString*, bool, double, double, double) OVERRIDE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationInspectorAgent.h 16 typedef String ErrorString;
26 virtual void setDeviceOrientationOverride(ErrorString*, double, double, double) OVERRIDE;
27 virtual void clearDeviceOrientationOverride(ErrorString*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
InspectorFileSystemAgent.h 50 virtual void enable(ErrorString*) OVERRIDE;
51 virtual void disable(ErrorString*) OVERRIDE;
53 virtual void requestFileSystemRoot(ErrorString*, const String& origin, const String& typeString, PassRefPtrWillBeRawPtr<RequestFileSystemRootCallback>) OVERRIDE;
54 virtual void requestDirectoryContent(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestDirectoryContentCallback>) OVERRIDE;
55 virtual void requestMetadata(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<RequestMetadataCallback>) OVERRIDE;
56 virtual void requestFileContent(ErrorString*, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtrWillBeRawPtr<RequestFileContentCallback>) OVERRIDE;
57 virtual void deleteEntry(ErrorString*, const String& url, PassRefPtrWillBeRawPtr<DeleteEntryCallback>) OVERRIDE;
64 bool assertEnabled(ErrorString*);
65 ExecutionContext* assertExecutionContextForOrigin(ErrorString*, SecurityOrigin*);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationInspectorAgent.h 44 typedef String ErrorString;
54 virtual void setGeolocationOverride(ErrorString*, const double*, const double*, const double*) OVERRIDE;
55 virtual void clearGeolocationOverride(ErrorString*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
InspectorDatabaseAgent.h 48 typedef String ErrorString;
66 virtual void enable(ErrorString*) OVERRIDE;
67 virtual void disable(ErrorString*) OVERRIDE;
68 virtual void getDatabaseTableNames(ErrorString*, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names) OVERRIDE;
69 virtual void executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtrWillBeRawPtr<ExecuteSQLCallback>) OVERRIDE;

Completed in 224 milliseconds

1 2 3 4