Chromium 的主程序是用什么语言编写的?

What is the name of the language in which the main program of Chromium is written?

我们想为 Chromium 开发一个新插件。

要达到这个目标,我们必须至少学习一门计算机语言。

我们不知道它/他们的名字。

你知道编写程序的计算机语言的名称吗 包含

1) t时刻取值为URL的变量,X先生的Chromium浏览器资源在t时刻连接;

2)t时刻值为X先生的Chromium浏览器在t时刻连接的文本资源的变量

组装? C? C++? Java? Python?

你知道如何在Chromium的源代码中找到这些变量的名称吗?使用此软件的开发人员设计的文档?

非常感谢。

真诚的, 内奥米和苏菲

Chromium 是用 C++ 编写的。目前支持 C++11 和 C++14。 Chromium C++ 风格指南中提到了以下内容:

  • C++11: Default allowed; see banned features below
  • C++14: Default allowed; see banned features below
  • C++17: Not yet supported in Chromium, unlikely before mid-2021; tracking bug
  • C++20: Not yet standardized
  • Abseil: Initially supported July 31, 2020; see allowed/banned/TBD features below
    • absl::StatusOr: Initially supported September 3, 2020

C++ 风格指南包含在 https://chromium.googlecode.com 的源代码中: