| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
GlobalBrowserCollection(const GlobalBrowserCollection&) = delete;
GlobalBrowserCollection& operator=(const GlobalBrowserCollection&) = delete;nit: Could we sandwich this between the constructor and destructor (aligns with style guide)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
GlobalBrowserCollection(const GlobalBrowserCollection&) = delete;
GlobalBrowserCollection& operator=(const GlobalBrowserCollection&) = delete;nit: Could we sandwich this between the constructor and destructor (aligns with style guide)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
18 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/browser/ui/browser_window/public/global_browser_collection.h
Insertions: 1, Deletions: 2.
@@ -23,10 +23,9 @@
static GlobalBrowserCollection* GetInstance();
GlobalBrowserCollection();
- ~GlobalBrowserCollection() override;
-
GlobalBrowserCollection(const GlobalBrowserCollection&) = delete;
GlobalBrowserCollection& operator=(const GlobalBrowserCollection&) = delete;
+ ~GlobalBrowserCollection() override;
// BrowserCollectionObserver:
void OnBrowserCreated(BrowserWindowInterface* browser) override;
```
Implement GlobalBrowserCollection.
`GlobalBrowserCollection` is a GlobalFeature that represents an
observable collection of all BrowserWindowInterface objects globally.
See
https://docs.google.com/document/d/1aQRPDX9RjWHE48rAHntsV64VU1-4uZO_nkL6A7ohr2k/edit?tab=t.5u9lkywxkk2n
for design details.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |