| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 EXTENSIONS_RENDERER_CHROME_SETTING_H_ | 5 #ifndef EXTENSIONS_RENDERER_CHROME_SETTING_H_ |
| 6 #define EXTENSIONS_RENDERER_CHROME_SETTING_H_ | 6 #define EXTENSIONS_RENDERER_CHROME_SETTING_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "extensions/renderer/argument_spec.h" | 11 #include "extensions/renderer/bindings/argument_spec.h" |
| 12 #include "gin/wrappable.h" | 12 #include "gin/wrappable.h" |
| 13 #include "v8/include/v8.h" | 13 #include "v8/include/v8.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class DictionaryValue; | 16 class DictionaryValue; |
| 17 class ListValue; | 17 class ListValue; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace gin { | 20 namespace gin { |
| 21 class Arguments; | 21 class Arguments; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 // different settings can take a different type of argument depending on the | 81 // different settings can take a different type of argument depending on the |
| 82 // preference it manages). | 82 // preference it manages). |
| 83 ArgumentSpec argument_spec_; | 83 ArgumentSpec argument_spec_; |
| 84 | 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(ChromeSetting); | 85 DISALLOW_COPY_AND_ASSIGN(ChromeSetting); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace extensions | 88 } // namespace extensions |
| 89 | 89 |
| 90 #endif // EXTENSIONS_RENDERER_CHROME_SETTING_H_ | 90 #endif // EXTENSIONS_RENDERER_CHROME_SETTING_H_ |
| OLD | NEW |