clang-format produced code that (choose all that apply):
- Doesn't match Chromium style
Here's the code before formatting:
virtual void NotifyCacheCreated(
const std::string& cache_name,
std::unique_ptr<CacheStorageCacheHandle> cache_handle) {};
Here's the code after formatting:
virtual void NotifyCacheCreated(
const std::string& cache_name,
std::unique_ptr<CacheStorageCacheHandle> cache_handle){};
Here's how it ought to look:
virtual void NotifyCacheCreated(
const std::string& cache_name,
std::unique_ptr<CacheStorageCacheHandle> cache_handle) {};
Code review link for full files/context:
https://codereview.chromium.org/2186433004/diff/20001/content/browser/cache_storage/cache_storage.cc
Comment 1 by thakis@chromium.org
, Jul 26 2016