Bug 1874684 - Part 4: Prefer const references instead of copying Instant values....
[gecko.git] / browser / docs / overview.rst
blob26f61ff5135e4a797f19e14e4578f7d8ab70b9fc
1 Firefox for Desktop
2 ===================
4 Desktop architecture
5 --------------------
7 One of the keys to understanding how Firefox is architected is to know that Gecko is used to render
8 both web content as well as the UI of the browser. This means that, to a large extent, the UI of
9 Firefox is made using web technologies like HTML, CSS, and JavaScript. For example, the document
10 ``chrome://browser/content/browser.xhtml`` is the markup for a single Firefox browser window. You
11 can think of it almost like index.html for a webpage.
13 The decision to use Gecko for rendering the UI was made during an era when HTML was not yet
14 expressive enough or sufficient to build desktop UIs. A different markup language,
15 `XUL <https://en.wikipedia.org/wiki/XUL>`_, was developed for that purpose instead, which Gecko also
16 knows how to interpret. Since that time, HTML and CSS has evolved to the point where XUL is not
17 strictly necessary for most use-cases. Where possible, we have been gradually migrating our UI to
18 use less XUL and more standard HTML and CSS.
20 Reusable UI Widgets
21 -------------------
23 Many of the UI widgets in use in the user interface are built as web components that can be reused.
25 :ref:`Read more <Reusable UI widgets>`
27 Tabbrowser
28 ----------
30 The tabbrowser component manages the tabs in a browser window.
32 :ref:`Read more <tabbrowser>`
34 Address Bar
35 -----------
37 The address bar (varyingly also referred to as the Awesome Bar, or Quantum Bar) handles users
38 entering web addresses including a popup with suggestions from various sources including history,
39 bookmarks and search engines.
41 :ref:`Read more <Address Bar>`
43 Search
44 ------
46 The search service manages the list of search engines available in the address bar.
48 :ref:`Read more <Search>`
50 Places
51 ------
53 The places component includes the database that stores history and bookmarks as well as a set of UI
54 components that present those to the user.
56 :ref:`Read more <Places>`
58 Firefox Sync and Application Services
59 -------------------------------------
61 Application services includes the sync engines and Firefox Accounts integration.
63 :ref:`Read more <Services>`
65 Developer Tools
66 ---------------
68 The developer tools support web developers when building webpages but as the Firefox UI is itself
69 built using web technologies it is also possible to use the developer tools to debug the Firefox UI.
71 :ref:`Read more <Firefox DevTools Contributor Docs>`
73 Browser Toolbox
74 ###############
76 The Browser Toolbox is a way to launch the developer tools in a separate process so that they can be
77 used to debug the main browser UI.
79 :ref:`Read more <Browser Toolbox>`
81 Profiler
82 ########
84 The Firefox Profiler is the way to measure the performance of your code. Go to
85 `profiler.firefox.com <https://profiler.firefox.com>`__ to enable the button in Firefox and record a
86 performance profile. These profiles can be uploaded and shared. It can identify slow parts of the
87 code, and reveal the underlying behavior of how code runs.
89 Installer
90 ---------
92 The Windows installer for Firefox is built with NSIS. There are currently no installers for other
93 operating systems.
95 :ref:`Read more <Installer>`
97 Application Update
98 ------------------
100 Application Update is responsible for requesting available updates from the update servers,
101 downloading them, verifying their integrity and then ultimately installing them. A binary patch tool
102 (bsdiff) is used to reduce the size of update files and update files are delivered in the
103 bespoke mar (Mozilla ARchive) format.
105 :ref:`Read more <Application Update>`