Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1178)

Side by Side Diff: chrome/renderer/extensions/chrome_extensions_dispatcher_delegate.h

Issue 1312653003: Fix for WebView accessible resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments by kalman@. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698