More StructuredData::Type::eTypeDictionary -> lldb::eStructuredDataTypeDictionary

...missing from previous r304138 "Added new API to SBStructuredData class"

llvm-svn: 304142
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
index a3e5ce3..d318c35 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
@@ -1120,7 +1120,7 @@
   auto json_object = StructuredData::ParseJSON(packet.Peek());
 
   if (!json_object ||
-      json_object->GetType() != StructuredData::Type::eTypeDictionary)
+      json_object->GetType() != lldb::eStructuredDataTypeDictionary)
     return SendIllFormedResponse(packet, "jTraceStart: Ill formed packet ");
 
   auto json_dict = json_object->GetAsDictionary();
@@ -1140,7 +1140,7 @@
   StructuredData::ObjectSP custom_params_sp =
       json_dict->GetValueForKey("params");
   if (custom_params_sp &&
-      custom_params_sp->GetType() != StructuredData::Type::eTypeDictionary)
+      custom_params_sp->GetType() != lldb::eStructuredDataTypeDictionary)
     return SendIllFormedResponse(packet, "jTraceStart: Ill formed packet ");
 
   options.setTraceParams(
@@ -1182,7 +1182,7 @@
   auto json_object = StructuredData::ParseJSON(packet.Peek());
 
   if (!json_object ||
-      json_object->GetType() != StructuredData::Type::eTypeDictionary)
+      json_object->GetType() != lldb::eStructuredDataTypeDictionary)
     return SendIllFormedResponse(packet, "jTraceStop: Ill formed packet ");
 
   auto json_dict = json_object->GetAsDictionary();
@@ -1219,7 +1219,7 @@
   auto json_object = StructuredData::ParseJSON(packet.Peek());
 
   if (!json_object ||
-      json_object->GetType() != StructuredData::Type::eTypeDictionary)
+      json_object->GetType() != lldb::eStructuredDataTypeDictionary)
     return SendIllFormedResponse(packet,
                                  "jTraceConfigRead: Ill formed packet ");
 
@@ -1287,7 +1287,7 @@
   auto json_object = StructuredData::ParseJSON(packet.Peek());
 
   if (!json_object ||
-      json_object->GetType() != StructuredData::Type::eTypeDictionary)
+      json_object->GetType() != lldb::eStructuredDataTypeDictionary)
     return SendIllFormedResponse(packet, "jTrace: Ill formed packet ");
 
   auto json_dict = json_object->GetAsDictionary();