| 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_CONTENT_SETTING_H_ | 5 #ifndef EXTENSIONS_RENDERER_CONTENT_SETTING_H_ |
| 6 #define EXTENSIONS_RENDERER_CONTENT_SETTING_H_ | 6 #define EXTENSIONS_RENDERER_CONTENT_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/api_binding_types.h" | 11 #include "extensions/renderer/bindings/api_binding_types.h" |
| 12 #include "extensions/renderer/argument_spec.h" | 12 #include "extensions/renderer/bindings/argument_spec.h" |
| 13 #include "gin/wrappable.h" | 13 #include "gin/wrappable.h" |
| 14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class DictionaryValue; | 17 class DictionaryValue; |
| 18 class ListValue; | 18 class ListValue; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace gin { | 21 namespace gin { |
| 22 class Arguments; | 22 class Arguments; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 // (since different settings can take a different type of argument depending | 82 // (since different settings can take a different type of argument depending |
| 83 // on the preference it manages). | 83 // on the preference it manages). |
| 84 ArgumentSpec argument_spec_; | 84 ArgumentSpec argument_spec_; |
| 85 | 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(ContentSetting); | 86 DISALLOW_COPY_AND_ASSIGN(ContentSetting); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace extensions | 89 } // namespace extensions |
| 90 | 90 |
| 91 #endif // EXTENSIONS_RENDERER_CONTENT_SETTING_H_ | 91 #endif // EXTENSIONS_RENDERER_CONTENT_SETTING_H_ |
| OLD | NEW |