Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_THEME_PROFILE_KEY_H_ | |
| 6 #define CHROME_BROWSER_UI_VIEWS_THEME_PROFILE_KEY_H_ | |
| 7 | |
| 8 namespace aura { | |
| 9 class Window; | |
| 10 } | |
| 11 | |
| 12 class Profile; | |
| 13 | |
| 14 namespace ThemeProfileKey { | |
|
sky
2017/02/17 17:02:37
We generally don't use namespaces for files, and i
Tom (Use chromium acct)
2017/02/17 21:30:54
Done.
| |
| 15 | |
| 16 void SetThemeProfileForWindow(aura::Window* window, Profile* profile); | |
| 17 Profile* GetThemeProfileForWindow(aura::Window*); | |
| 18 | |
| 19 } // namespace ThemeProfileKey | |
| 20 | |
| 21 #endif // CHROME_BROWSER_UI_VIEWS_THEME_PROFILE_KEY_H_ | |
| OLD | NEW |