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

Side by Side Diff: chrome/browser/chromeos/arc/arc_session_manager.cc

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback Created 3 years, 8 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 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 #include "chrome/browser/chromeos/arc/arc_session_manager.h" 5 #include "chrome/browser/chromeos/arc/arc_session_manager.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/shelf/shelf_delegate.h" 9 #include "ash/shelf/shelf_delegate.h"
10 #include "ash/wm_shell.h"
11 #include "base/bind.h" 10 #include "base/bind.h"
12 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.h"
13 #include "base/command_line.h" 12 #include "base/command_line.h"
14 #include "base/logging.h" 13 #include "base/logging.h"
15 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
16 #include "base/strings/string16.h" 15 #include "base/strings/string16.h"
17 #include "base/threading/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
18 #include "base/time/time.h" 17 #include "base/time/time.h"
19 #include "chrome/browser/chromeos/arc/arc_auth_context.h" 18 #include "chrome/browser/chromeos/arc/arc_auth_context.h"
20 #include "chrome/browser/chromeos/arc/arc_auth_notification.h" 19 #include "chrome/browser/chromeos/arc/arc_auth_notification.h"
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 1047
1049 #undef MAP_STATE 1048 #undef MAP_STATE
1050 1049
1051 // Some compilers report an error even if all values of an enum-class are 1050 // Some compilers report an error even if all values of an enum-class are
1052 // covered exhaustively in a switch statement. 1051 // covered exhaustively in a switch statement.
1053 NOTREACHED() << "Invalid value " << static_cast<int>(state); 1052 NOTREACHED() << "Invalid value " << static_cast<int>(state);
1054 return os; 1053 return os;
1055 } 1054 }
1056 1055
1057 } // namespace arc 1056 } // namespace arc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698