Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: chrome/browser/lifetime/keep_alive_state_observer.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_ 5 #ifndef CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_
6 #define CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_ 6 #define CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_
7 7
8 struct KeepAliveOptions;
9
10 class KeepAliveStateObserver { 8 class KeepAliveStateObserver {
11 public: 9 public:
12 virtual void OnKeepAliveStateChanged(bool is_keeping_alive) = 0; 10 virtual void OnKeepAliveStateChanged(bool is_keeping_alive) = 0;
13 virtual void OnKeepAliveRestartStateChanged(bool can_restart) = 0; 11 virtual void OnKeepAliveRestartStateChanged(bool can_restart) = 0;
14 12
15 protected: 13 protected:
16 virtual ~KeepAliveStateObserver() {} 14 virtual ~KeepAliveStateObserver() {}
17 }; 15 };
18 16
19 #endif // CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_ 17 #endif // CHROME_BROWSER_LIFETIME_KEEP_ALIVE_STATE_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/browser/io_thread.h ('k') | chrome/browser/loader/chrome_resource_dispatcher_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698