Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8139207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:44:55+00:00 2026-06-06T11:44:55+00:00

I am writing a linker for a Google Chrome Extension. In the gwt.xml file,

  • 0

I am writing a linker for a Google Chrome Extension. In the gwt.xml file, I need to add a line stating about the user agent property. For firefox, the pattern is as follows:

<set-property name="user.agent" value="gecko1_8"/>

However, I am not able to find a corresponding value name for Google Chrome specific code.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:44:57+00:00Added an answer on June 6, 2026 at 11:44 am

    GWT treats Chrome and Safari the same, so there is only a “safari” agent value that covers both. So you can’t do this just using user agent configurations.

    However GWT’s deferred binding mechanisms do have a way for you to tailor your code to properties that are only sniffed at runtime, by creating “property providers”. This is basically how you would do this in your .gwt.xml:

      <define-property name="is.really.chrome" values="false,true"/>
    
      <property-provider name="is.really.chrome"><![CDATA[
          var ua = navigator.userAgent.toLowerCase();
          if (ua.indexOf("applewebkit") != -1) {
            if (ua.indexOf("chrome") != -1) {
              return true;
            } 
          } 
          return false;
      ]]></property-provider>
    
      <replace-with
          class="some.implementation.of.interface">
        <when-type-is class="some.interface.used.with.GWT.create"/>
    
        <when-property-is name="user.agent" value="safari"/>
        <when-property-is name="is.really.chrome" value="true"/>
      </replace-with>
    

    What the top part of the above does is define a new property “is.really.chrome” whose value will be determined by the Javascript code in the <property-provider> block when your application is loaded (this code gets inlined into the GWT startup sequence.)

    The second part, the <replace-with>, shows how you would define a replacement rule that was sensitive to the value of this new property. This (and any other rules like it) will cause the GWT compiler to create an additional permutation of the code which is mostly the same as the safari version but with your chrome customizations.

    This article is one of the best I’ve found on the subject: http://css.dzone.com/news/understanding-gwt-compiler

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a program that maintains a linked_list in a file. So I
I need to use libcurl in a piece of software I am writing on
Im writing Userscript for one page. It is working under chrome. On that page
I'm writing a simple game engine, and I have the EntityComponent.h file: #ifndef Psycho2D_Core_EntityComponent_
Assuming that if the error's spotted in the .o file that it's the linker's
I'm currently writing a program where I need to run many simulations and speed
I'm writing a library where the user can define arbitrary structures and pass them
I'm writing a simple linked list based memory manager in the form: ...Header|Block|Header|Block... with
Writing Classic ASP code in JScript has a lot going for it: more humane
Writing htaccess that allows me to remove index.php from the URL can confuse search

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.