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

Side by Side Diff: chrome/browser/ui/ash/ash_util.h

Issue 2721153004: Remove ash_util namespace (Closed)
Patch Set: Created 3 years, 9 months 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_UI_ASH_ASH_UTIL_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_ASH_UTIL_H_
6 #define CHROME_BROWSER_UI_ASH_ASH_UTIL_H_ 6 #define CHROME_BROWSER_UI_ASH_ASH_UTIL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
12 12
13 namespace service_manager { 13 namespace service_manager {
14 class Service; 14 class Service;
15 } 15 }
16 16
17 namespace ui { 17 namespace ui {
18 class Accelerator; 18 class Accelerator;
19 } // namespace ui 19 } // namespace ui
achuithb 2017/03/01 10:46:46 Can probably drop this comment.
20 20
21 namespace ash_util {
22
23 // Creates an in-process Service instance of which can host common ash 21 // Creates an in-process Service instance of which can host common ash
24 // interfaces. 22 // interfaces.
25 std::unique_ptr<service_manager::Service> CreateEmbeddedAshService( 23 std::unique_ptr<service_manager::Service> CreateEmbeddedAshService(
26 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner); 24 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);
27 25
28 // Returns true if Ash should be run at startup. 26 // Returns true if Ash should be run at startup.
29 bool ShouldOpenAshOnStartup(); 27 bool ShouldOpenAshOnStartup();
30 28
31 // Returns true if Chrome is running in the mash shell. 29 // Returns true if Chrome is running in the mash shell.
32 bool IsRunningInMash(); 30 bool IsRunningInMash();
33 31
34 // Returns true if the given |accelerator| has been deprecated and hence can 32 // Returns true if the given |accelerator| has been deprecated and hence can
35 // be consumed by web contents if needed. 33 // be consumed by web contents if needed.
36 bool IsAcceleratorDeprecated(const ui::Accelerator& accelerator); 34 bool IsAcceleratorDeprecated(const ui::Accelerator& accelerator);
37 35
38 } // namespace ash_util
39
40 #endif // CHROME_BROWSER_UI_ASH_ASH_UTIL_H_ 36 #endif // CHROME_BROWSER_UI_ASH_ASH_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698