| 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" | 13 #include "base/memory/linked_ptr.h" |
| 14 #include "base/memory/scoped_ptr.h" | |
| 15 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 16 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
| 17 #include "base/values.h" | 16 #include "base/values.h" |
| 18 #include "components/login/base_screen_handler_utils.h" | 17 #include "components/login/base_screen_handler_utils.h" |
| 19 #include "components/login/login_export.h" | 18 #include "components/login/login_export.h" |
| 20 | 19 |
| 21 namespace login { | 20 namespace login { |
| 22 | 21 |
| 23 // ScreenContext is a key-value storage for values that are shared | 22 // ScreenContext is a key-value storage for values that are shared |
| 24 // between C++ and JS sides. Objects of this class should be used in | 23 // 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... |
| 121 | 120 |
| 122 // Contains all pending changes. | 121 // Contains all pending changes. |
| 123 base::DictionaryValue changes_; | 122 base::DictionaryValue changes_; |
| 124 | 123 |
| 125 DISALLOW_COPY_AND_ASSIGN(ScreenContext); | 124 DISALLOW_COPY_AND_ASSIGN(ScreenContext); |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } // namespace login | 127 } // namespace login |
| 129 | 128 |
| 130 #endif // COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ | 129 #endif // COMPONENTS_LOGIN_SCREENS_SCREEN_CONTEXT_H_ |
| OLD | NEW |