Thanks for all of the information so far.

In a nutshell, I have the following on windows.

I have a native window's application (call it Master Program) that
other windows
applications can interact with.
Since Chrome is another native window's application, it should be able
to directly (by
modfying chrome code directrly) or indirectly (through a plugin)
interact with this
Master Process,  correct?

If the above was true, meaning Chrome (Task manager) could interface
with my Master Process,
I was hoping that the tabbed processes would be able to talk with the
Task manager.

Overall I am looking for a way for the tabbed processes to be able to
talk through the Chrome
task manager with my Master Program.

I hope I am making things clearer.


On Jul 1, 8:16 am, Dinge Raphael <[email protected]> wrote:
> Hi,
>
> May I ask the purpose of the 3 questions in terms of needs ?
>
> What first come to my mind is that you may want to deploy an application
> which relies on Chrome for a particular in-house project.
>
> As Phistuck noted, this can be done in Chromium, but there are
> probably more good news.
>
> By using the webkit extension system with v8, you can do what
> you want without modifying chromium code directly.
> This would still modify chrome code, but if you're needs are
> simple, you may maintain a simple project in parallel.
> (a good starting point is the test shell)
>
> all you have to do is to notify webkit of your extension
> WebKit::registerExtension (MyExtension::get ());
>
> MyExtension inherits from v8::Extension, and the interface
> is very simple. Basically you make a piece of javascript
> that will be copied into each page the browser will navigate
> to. The interesting part is that you can declare native
> functions that you will bind with your code.
> With that you can have a function to contain a javascript
> function that your code will be able to get for later
> notification systems.
>
> You then have bidirectional communication, from your code
> to the page, and everything is possible.
>
> Finally I've made a prototype for one of our project with
> all possible ways to communicate, and the class is only 380
> lines long ! And it will be less in the future.
>
> Hope this will help,
>
> Raphael
--~--~---------~--~----~------------~-------~--~----~
Chromium Discussion mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to