summaryrefslogtreecommitdiffstats
path: root/extensions/renderer/activity_log_converter_strategy_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Rename v8::UniquePersistent to v8::Global in Extensions code.kalman2015-03-121-1/+1
| | | | | | | | R=rockot@chromium.org Review URL: https://codereview.chromium.org/997973002 Cr-Commit-Position: refs/heads/master@{#320302}
* Replace extensions::ScopedPersistent with v8::UniquePersistent.kalman2015-03-091-8/+6
| | | | | | | | R=jochen@chromium.org Review URL: https://codereview.chromium.org/983793003 Cr-Commit-Position: refs/heads/master@{#319688}
* Standardize usage of virtual/override/final specifiers.dcheng2014-10-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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=jyasskin@chromium.org Review URL: https://codereview.chromium.org/685503002 Cr-Commit-Position: refs/heads/master@{#301450}
* Move DOMActivityLogger and associated code from //chrome to //extensionsjamescook@chromium.org2014-05-011-0/+172
This is a follow-up to rockot's CL to move extensions::Dispatcher and a precondition to moving c/r/e/extension_helper.cc. This was entirely a mechanical move -- no functional changes. BUG=359836 TEST=compiles Review URL: https://codereview.chromium.org/268553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267502 0039d316-1c4b-4281-b951-d872f2087c98