| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ | 5 #ifndef COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ |
| 6 #define COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ | 6 #define COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/linked_ptr.h" | |
| 14 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 15 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
| 16 #include "base/values.h" | 15 #include "base/values.h" |
| 17 #include "components/login/base_screen_handler_utils.h" | 16 #include "components/login/base_screen_handler_utils.h" |
| 18 #include "components/login/login_export.h" | 17 #include "components/login/login_export.h" |
| 19 | 18 |
| 20 namespace login { | 19 namespace login { |
| 21 | 20 |
| 22 // ScreenContext is a key-value storage for values that are shared | 21 // ScreenContext is a key-value storage for values that are shared |
| 23 // between C++ and JS sides. Objects of this class should be used in | 22 // between C++ and JS sides. Objects of this class should be used in |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 119 |
| 121 // Contains all pending changes. | 120 // Contains all pending changes. |
| 122 base::DictionaryValue changes_; | 121 base::DictionaryValue changes_; |
| 123 | 122 |
| 124 DISALLOW_COPY_AND_ASSIGN(ScreenContext); | 123 DISALLOW_COPY_AND_ASSIGN(ScreenContext); |
| 125 }; | 124 }; |
| 126 | 125 |
| 127 } // namespace login | 126 } // namespace login |
| 128 | 127 |
| 129 #endif // COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ | 128 #endif // COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ |
| OLD | NEW |