An interesting browser project of google (opensource)

For everything that's not in any way related to PureBasic. General chat etc...
milan1612
Addict
Addict
Posts: 894
Joined: Thu Apr 05, 2007 12:15 am
Location: Nuremberg, Germany
Contact:

Post by milan1612 »

JCV wrote:It uses less memory compared to IE and FF. Very nice browser! 8)
Absolutely not here! I have 3 tabs open and there are 3 chrome.exe processes
in the taskmanager using a total of 77 MB. The same tabs in FF3
are using 60 MB only :?
But the speed clearly outweighs the extra memory consumption...
Windows 7 & PureBasic 4.4
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

speed AND stability. If one tab crashes, due to whatever like a faulty script, bugs, bugs in plugins etc. only that tab goes down.
milan1612
Addict
Addict
Posts: 894
Joined: Thu Apr 05, 2007 12:15 am
Location: Nuremberg, Germany
Contact:

Post by milan1612 »

Just found this very interesting function in the code of Chrome.
It checks if there are any 'troublesome' DLLs loaded and if any are found it silently unloads them.
There's only one DLL predefined yet, the hook DLL of Spyware Doctor 5 :lol:

Code: Select all

// Try to unload DLLs that malfunction with the sandboxed processes.
static void EvictTroublesomeDlls() {
  const wchar_t* troublesome_dlls[] = {
      L"smumhook.dll",  // spyware doctor version 5 and above.
      NULL              // Must be null. Here you can add with the debugger.
  };

  for(int ix = 0; ix != arraysize(troublesome_dlls); ++ix) {
    if (!troublesome_dlls[ix])
      break;
    HMODULE module = ::GetModuleHandleW(troublesome_dlls[ix]);
    if (module) {
      LOG(WARNING) << "dll to evict found: " << ix;
      if (::FreeLibrary(module)) {
        DCHECK(NULL == ::GetModuleHandleW(troublesome_dlls[ix]));
      }
    }
  }
}
Interesting approach: If your code is incompatible with an anti-spyware utility,
you just kill the program instead of rethinking your code... :roll:
Windows 7 & PureBasic 4.4
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

Just tried Chrome and the first bug I found was the Options window being
hidden behind the Browser window, making it impossible to access without
minimizing the Browser one. I guess y'all gonna say that it works fine for
you, but it don't for me. :)
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Post by Kaeru Gaman »

milan1612 wrote:... If your code is incompatible with an anti-spyware utility,
you just kill the program instead of rethinking your code... :roll:
seems this is the approach for the ultimate spyware... :?
oh... and have a nice day.
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

Mistrel wrote:What? And I can't middle-mouse-drag to scroll??
Biggest missing feature, along with the ability to disable the history, I just can't see the use of it, at least for me...
moogle
Enthusiast
Enthusiast
Posts: 372
Joined: Tue Feb 14, 2006 9:27 pm
Location: London, UK

Post by moogle »

Image
User avatar
pdwyer
Addict
Addict
Posts: 2813
Joined: Tue May 08, 2007 1:27 pm
Location: Chiba, Japan

Post by pdwyer »

how do you organise your favourites/bookmarks?

after importing I have a god awful mess with no organise feature and I can't find any files to rearrange either. I have to delete one at a time :(

Hey, writing this post I found one feature and one bug:
- feature is that the bottom right corner of this edit box is a resizer to make it bigger
- bug is that sometime as I type text goes invisible. if I select it then it comes back


(Changing languages is nice)
Paul Dwyer

“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein
User avatar
pdwyer
Addict
Addict
Posts: 2813
Joined: Tue May 08, 2007 1:27 pm
Location: Chiba, Japan

Post by pdwyer »

moogle wrote:Anyone bothered to read the EULA? :)
http://tapthehive.com/discuss/This_Post ... EULA_Sucks
scoff, most of the time when you post in a forum the content then belongs to the forum so I haven't got any rights to pass them and this "You confirm and warrant to Google that you have all the rights, power and authority necessary to grant the above license."

means everyone is in breach of license from the first time they post somewhere where they don't have rights to give to google... :roll:

if it's a real worry then the lawyers will work it out I'm sure. it will get solved or the browser will just go away
Paul Dwyer

“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein
moogle
Enthusiast
Enthusiast
Posts: 372
Joined: Tue Feb 14, 2006 9:27 pm
Location: London, UK

Post by moogle »

exactly, would be nice if they removed that useless bit of the EULA. All your PB code you post through their now belongs to them :twisted:

Looks good though but yeah that bit will spoil it if it stays.
Image
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

Just tried Chrome and the first bug I found was the Options window being
hidden behind the Browser window, making it impossible to access without
minimizing the Browser one. I guess y'all gonna say that it works fine for
you, but it don't for me.
That doesn't happen in mine... opened right up on top!

My beef is... You can tell it to run a tab in incognito mode... but any windows that open from THAT incognito window look like they are standard REPORT EVERYTHING TO GOOGLE windows...

If I am boosting porn... er... browsing incognito... I want ALL windows incognito!!!
Looks good though but yeah that bit will spoil it if it stays.
Yep... Cyberdyne/Skynet... er GOOGLE will have to pee in it to change the flavor, that is the way of all product development! 8)
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Heathen
Enthusiast
Enthusiast
Posts: 498
Joined: Tue Sep 27, 2005 6:54 pm
Location: At my pc coding..

Post by Heathen »

thefool wrote:speed AND stability. If one tab crashes, due to whatever like a faulty script, bugs, bugs in plugins etc. only that tab goes down.
Paste this into the chrome URL box:

Code: Select all

:%
I love Purebasic.
garretthylltun
Enthusiast
Enthusiast
Posts: 346
Joined: Wed Oct 26, 2005 2:46 am
Contact:

Post by garretthylltun »

Yeah, right, if one tab crashes, the others stay.. My butt! I pasted that into a separate tab and the whole thing crashed, not just the one tab. ROFLS.

Oh well. Over all though, so far it's not a bad browser. A bit featureless though.
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)
· Necroprogramming FTW! - "Wait.. Is necroprogramming legal?"
· http://www.freewarehome.com/ <-- Freeware listings since 1996
User avatar
the.weavster
Addict
Addict
Posts: 1576
Joined: Thu Jul 03, 2003 6:53 pm
Location: England

Post by the.weavster »

I think it was MrJiles who asked about the feasability of a browser OS and I think that maybe the ultimate destination for Chrome.

Perhaps the Google vision is everyone using Google Apps and Google APIs from thin clients running Chrome.
User avatar
pdwyer
Addict
Addict
Posts: 2813
Joined: Tue May 08, 2007 1:27 pm
Location: Chiba, Japan

Post by pdwyer »

nice rendering though for a first version

could be grabbing market share in 12 months if they get the bugs fixed quick
Paul Dwyer

“In nature, it’s not the strongest nor the most intelligent who survives. It’s the most adaptable to change” - Charles Darwin
“If you can't explain it to a six-year old you really don't understand it yourself.” - Albert Einstein
Post Reply