| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "extensions/renderer/dispatcher_delegate.h" | 9 #include "extensions/renderer/dispatcher_delegate.h" |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 void RegisterNativeHandlers(extensions::Dispatcher* dispatcher, | 21 void RegisterNativeHandlers(extensions::Dispatcher* dispatcher, |
| 22 extensions::ModuleSystem* module_system, | 22 extensions::ModuleSystem* module_system, |
| 23 extensions::ScriptContext* context) override; | 23 extensions::ScriptContext* context) override; |
| 24 void PopulateSourceMap( | 24 void PopulateSourceMap( |
| 25 extensions::ResourceBundleSourceMap* source_map) override; | 25 extensions::ResourceBundleSourceMap* source_map) override; |
| 26 void RequireAdditionalModules(extensions::ScriptContext* context, | 26 void RequireAdditionalModules(extensions::ScriptContext* context, |
| 27 bool is_within_platform_app) override; | 27 bool is_within_platform_app) override; |
| 28 void OnActiveExtensionsUpdated( | 28 void OnActiveExtensionsUpdated( |
| 29 const std::set<std::string>& extensions_ids) override; | 29 const std::set<std::string>& extensions_ids) override; |
| 30 void SetChannel(int channel) override; | 30 void SetChannel(int channel) override; |
| 31 void SetWebViewPartitionID(const std::string& parition_id) final; |
| 31 | 32 |
| 32 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsDispatcherDelegate); | 33 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsDispatcherDelegate); |
| 33 }; | 34 }; |
| 34 | 35 |
| 35 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ | 36 #endif // CHROME_RENDERER_EXTENSIONS_CHROME_EXTENSIONS_DISPATCHER_DELEGATE_H_ |
| OLD | NEW |