yueying0083 / javachromiumembedded

Automatically exported from code.google.com/p/javachromiumembedded
0 stars 0 forks source link

Simple MainFrame example hangs on exit with latest revision r92 #97

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Get latest revision r92
2. Build (Windows 64, Release)
3. run.bat win64 Release simple
4. Close JFrame's X button

What is the expected output? What do you see instead?

App doesn't exit.

What version of the product are you using? On what operating system?

Latest r92, Windows 64 bit. Windows 7

Please provide any additional information below.

I see the Detailed  MainFrame.java has this new code:

        new Timer(3000, new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            System.exit(0);
          }
        }).start();

But the Simple MainFrame.java doesn't. Can you confirm with r92 we now need to 
explicitly call System.exit(0) after frame.dispose() and 
CefApp.getInstance().dispose() ?

Original issue reported on code.google.com by christop...@gmail.com on 27 Jun 2014 at 6:52

GoogleCodeExporter commented 9 years ago
Infinite native thread is created. Details from YourKit in attachment.

Original comment by bedla.cz...@gmail.com on 15 Jul 2014 at 8:55

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by magreenb...@gmail.com on 29 Jul 2014 at 10:32