0
Commit Graph

7 Commits

Author SHA1 Message Date
Avi Drissman
4e1b7bc33d Update copyright headers in content/
The methodology used to generate this CL is documented in
https://crbug.com/1098010#c34.

No-Try: true
No-Presubmit: true
Bug: 1098010
Change-Id: I8c0f009d16350271f07d8e5e561085822cc9dd27
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3895935
Owners-Override: Avi Drissman <avi@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Mark Mentovai <mark@chromium.org>
Auto-Submit: Avi Drissman <avi@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1047456}
2022-09-15 14:03:50 +00:00
hablich
d6a4f129ef Collect separate V8 histograms for Top10 non-Google sites
BUG=
R=jochen@chromium.org,hpayer@chromium.org,asvitkine@chromium.org

Review URL: https://codereview.chromium.org/1399853004

Cr-Commit-Position: refs/heads/master@{#356530}
2015-10-28 11:35:50 +00:00
dcheng
f576215cf6 Standardize usage of virtual/override/final specifiers.
The Google C++ style guide states:

  Explicitly annotate overrides of virtual functions or virtual
  destructors with an override or (less frequently) final specifier.
  Older (pre-C++11) code will use the virtual keyword as an inferior
  alternative annotation. For clarity, use exactly one of override,
  final, or virtual when declaring an override.

To better conform to these guidelines, the following constructs have
been rewritten:

- if a base class has a virtual destructor, then:
    virtual ~Foo();                   ->  ~Foo() override;
- virtual void Foo() override;        ->  void Foo() override;
- virtual void Foo() override final;  ->  void Foo() final;

This patch was automatically generated. The clang plugin can generate
fixit hints, which are suggested edits when it is 100% sure it knows how
to fix a problem. The hints from the clang plugin were applied to the
source tree using the tool in https://codereview.chromium.org/598073004.

BUG=417463
R=creis@chromium.org

Review URL: https://codereview.chromium.org/686523002

Cr-Commit-Position: refs/heads/master@{#301771}
2014-10-29 02:12:32 +00:00
mohan.reddy
ee0b42adc4 Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer
This step is a giant search and replace for OVERRIDE and FINAL to
replace them with their lowercase versions.

BUG=417463

Review URL: https://codereview.chromium.org/633303002

Cr-Commit-Position: refs/heads/master@{#298655}
2014-10-08 04:53:33 +00:00
rsleevi@chromium.org
c3e3589c3e Linux/ChromeOS Chromium style checker cleanup, content/ edition.
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.

BUG=115047

Review URL: https://chromiumcodereview.appspot.com/12210030

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181822 0039d316-1c4b-4281-b951-d872f2087c98
2013-02-12 02:08:01 +00:00
jam@chromium.org
e9ff79ccdf Move a bunch of code in content\renderer to the content namespace.
Review URL: https://codereview.chromium.org/11232014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163061 0039d316-1c4b-4281-b951-d872f2087c98
2012-10-19 21:31:26 +00:00
marja@chromium.org
b2d9876288 Per-host V8 histograms.
Create custom V8 histograms for a specified list of hosts. The histograms are
used if all RenderViews are displaying a page from the same host.

BUG=


Review URL: https://chromiumcodereview.appspot.com/10828342

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154700 0039d316-1c4b-4281-b951-d872f2087c98
2012-09-03 17:04:06 +00:00