Closed Bug 730198 Opened 12 years ago Closed 12 years ago

telemetry for YouDao Dictionary and Kazaguru

Categories

(Core :: Disability Access APIs, defect)

defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 728905

People

(Reporter: surkov, Assigned: capella)

References

Details

(Whiteboard: [good first bug][mentor=trev.saunders@gmail.com][lang=c++])

spun off bug 729861 comment #2:

TextExtractorImpl32.dll and TextExtractorImpl64.dll are parts of YouDao Dictionary (Chinese).
Kazahook.dll is part of Kazaguru (Japanese) (see http://www.staticflower.net/software/kazaguru.html).

refer to bug 728905 to get instruction how to fix this one
Assignee: nobody → markcapella
Status: NEW → ASSIGNED
(Added Trevor to cc:List ... wasn't sure if bugzilla was emailing him via whiteboard tag)

This is similar to bug728905 ... I could have rolled them together if I'd noticed earlier ... one special twist here is the use of either/or dll for YouDao win32 vs win64.

Is it right to add a consumer for each:

  if (::GetModuleHandleW(L"TextExtractorImpl32"))
    statistics::A11yConsumers(TEXTEXTRACTOR32);
  if (::GetModuleHandleW(L"TextExtractorImpl64"))
    statistics::A11yConsumers(TEXTEXTRACTOR64);

or to have both roll to the same consumer?

  if (::GetModuleHandleW(L"TextExtractorImpl32"))
    statistics::A11yConsumers(TEXTEXTRACTOR);
  if (::GetModuleHandleW(L"TextExtractorImpl64"))
    statistics::A11yConsumers(TEXTEXTRACTOR);
keep both as one consumer
Ok then, how about if I add to and re-post the patch in bug#728905 ?
(In reply to Mark Capella [:capella] from comment #3)
> Ok then, how about if I add to and re-post the patch in bug#728905 ?

fine with me.
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
not fixed, but can mark as dupe of bug 728905 if you're going to address this bug there, or you could mark if fixed after you fixed it in bug 728905.
Resolution: FIXED → DUPLICATE
You need to log in before you can comment on or make changes to this bug.