CentBrowser Forum

Full Version: data compression proxy
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Data compression proxy doesn't work at all. As data saver too. I have tried it on many sites and nothing. Just sites showing error and doesn't load at all. Can you fix compatibility of your browser with that extensions? Cause on comodo browser and chromodo it's working as many other's too.
Thanks for your feedback.
It is really a bug.Google's data compression server needs authentication, which is lacked in Chromium.
Already fixed.
Thank you very much. Will try it today. Cause i saw that you are released new version. Also time to time extension from adguard.com take huge memory capacity. On youtube time to time take 700mb per tab.
It is heard that uBlock is a good light-weight ad blocker.
(08-27-2015, 07:05 PM)CentBrowser Wrote: [ -> ]It is heard that uBlock is a good light-weight ad blocker.

Sick Nope it's not.
Does the data compression proxy work in the latest version?
Yeah working fine. But how did you do that? Can you tell me please. Cause i wanna tell that to Vivaldi support. They don't know how to fix it.
Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc

Code:
 std::string GetSpdyProxyAuthValue() {
   return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
    /*
#if defined(SPDY_PROXY_AUTH_VALUE)
   return SPDY_PROXY_AUTH_VALUE;
#else
   return std::string();
#endif
   */
 }
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
 return "44.0.2403.157";
  /*
#if defined(PRODUCT_VERSION)
 return PRODUCT_VERSION;
#else
 return std::string();
#endif
  */
}
(09-25-2015, 06:22 AM)CentBrowser Wrote: [ -> ]Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc

Code:
 std::string GetSpdyProxyAuthValue() {
   return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
   /*
#if defined(SPDY_PROXY_AUTH_VALUE)
   return SPDY_PROXY_AUTH_VALUE;
#else
   return std::string();
#endif
  */
 }
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
 return "44.0.2403.157";
 /*
#if defined(PRODUCT_VERSION)
 return PRODUCT_VERSION;
#else
 return std::string();
#endif
 */
}

Can i do it by myself on SlimJet or on Vivaldi qand where is i can find that file and how to compile code? Please can you explain?
Of course, no, except you compile your own Chromium.
http://dev.chromium.org/developers/how-tos/get-the-code
https://www.chromium.org/developers/how-...ns-windows

They should apply these changes to their source code, and release an updated version.
Pages: 1 2