Skip to content

Coding Style of XWalk for Android

James Ketrenos edited this page Sep 6, 2013 · 1 revision

General Coding Style

In genral, we follow the Chromium coding style: http://www.chromium.org/developers/coding-style, and there are some basic rules:

  • NEVER use TAB, use spaces instead of TAB
  • Do NOT leave spaces at the end of line
  • Do NOT leave blank lines at the end of file
  • Be CAREFUL with License headers

Coding Style of C++

For C++ Coding style, we basically follow Google C++ Style Guide:

Coding Style of Java

For Java Code, we follow the Android Open Source style guide

Coding Style of Python

Python code should follow PEP-8, except that Chromium uses two-space indentation instead of four-space indentation, and it uses MixedCase for method names and function names instead of lower_case_with_underscores. PEP-8 guide:

Coding Style of HTML/JavaScript/CSS

For Web resources, we follow Chromium's "Web Development Style Guide":

Clone this wiki locally