OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
dzhioev (left Google)
2013/12/20 03:39:01
File should be renamed, it's name now doesn't corr
merkulova
2014/01/10 15:16:52
Done.
| |
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_CHROMEOS_PROFILES_MULTIPROFILES_INTRO_VIEW_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_PROFILES_MULTIPROFILES_INTRO_VIEW_H_ | |
7 | |
8 namespace chromeos { | |
9 namespace multiprofiles { | |
dzhioev (left Google)
2013/12/20 03:39:01
I don't think that we need new namespace for one f
merkulova
2014/01/10 15:16:52
Done.
| |
10 | |
11 // Returns true if a dialog was successfully created. | |
12 bool IntroDialog(); | |
dzhioev (left Google)
2013/12/20 03:39:01
Function name should contain verb.
merkulova
2014/01/10 15:16:52
Done.
| |
13 | |
14 } // namespace multiprofiles | |
15 } // namespace chromeos | |
16 | |
17 #endif // CHROME_BROWSER_CHROMEOS_PROFILES_MULTIPROFILES_INTRO_VIEW_H_ | |
OLD | NEW |