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

Unified Diff: chrome/test/chromedriver/devtools_client_impl.h

Issue 12226026: [ChromeDriver] Select the main frame if a non-existant child frame is targeted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/chromedriver/devtools_client_impl.h
diff --git a/chrome/test/chromedriver/devtools_client_impl.h b/chrome/test/chromedriver/devtools_client_impl.h
index 4d03e78f2e7225fef3358c4936d081403ad9c0b5..2e3173f1f42c267416eddd328bf2c973bd8e244a 100644
--- a/chrome/test/chromedriver/devtools_client_impl.h
+++ b/chrome/test/chromedriver/devtools_client_impl.h
@@ -28,6 +28,10 @@ enum InspectorMessageType {
kCommandResponseMessageType
};
+enum InspectorErrorCode {
+ kContextIdNotFound = -32000,
kkania 2013/02/06 01:41:25 -32000 just means generic server error. devtools
craigdh 2013/02/06 18:52:49 Ah, that's unfortunate. I think for now the best c
+};
+
struct InspectorEvent {
InspectorEvent();
~InspectorEvent();

Powered by Google App Engine
This is Rietveld 408576698