Hello Anderson,
If you are using dynamic linking and a BPL for your chromium, have you
considered LoadPackage/UnloadPackage on the BPL file?
Like:
http://edn.embarcadero.com/article/27178
I have never had a need to do something like this myself, but it seems
reasonable: Something like:
Handle := LoadPackage('DCEF_2010.bpl');
.... load a form with chromium
UnloadPackage(Handle);
Regarding unregistering your CEF extension, I have no idea how to do
this.
-Steven