Fix XHR interceptor in CC RCE thread page

The XHR interceptor stopped working in the redesigned Community Console
thread pages (aka RCE/interop thread page). This is due to the fact that
the Javascript loaded before the XHR interceptor was set, and because
the requests differed in the Javascript types used, and the format of
the requests (an array to encode protobuf messages is used instead of
objects in the RCE thread page).

This CL fixes these issues.

Change-Id: I591d58f5f597a71a2794ee59b2c5cb9dd88cca9f
diff --git a/src/contentScripts/publicProfile.js b/src/contentScripts/publicProfile.js
index 82e949e..693aa3f 100644
--- a/src/contentScripts/publicProfile.js
+++ b/src/contentScripts/publicProfile.js
@@ -1,7 +1,7 @@
 import {getOptions} from '../common/optionsUtils.js';
+import {correctArrayKeys} from '../common/protojs.js';
 
 import PerForumStatsSection from './communityConsole/utils/PerForumStatsSection.js';
-import {correctArrayKeys} from './utilsCommon/protojs.js';
 import {injectPreviousPostsLinksUnifiedProfile} from './utilsCommon/unifiedProfiles.js';
 
 const profileViewRegex = /var view ?= ?(.+\]);/;