diff options
author | rob <rob@robwu.nl> | 2016-02-15 03:06:26 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-15 11:07:13 +0000 |
commit | aefd358f97ba1a4462e4853b9ce4a3e340c6efba (patch) | |
tree | b319fe48695e16d4c21f70dbfdaa9e915eb7fd99 /extensions/renderer/app_window_custom_bindings.h | |
parent | e8b36a62043b0998bc06cc6e0a317fbec14c628b (diff) | |
download | chromium_src-aefd358f97ba1a4462e4853b9ce4a3e340c6efba.zip chromium_src-aefd358f97ba1a4462e4853b9ce4a3e340c6efba.tar.gz chromium_src-aefd358f97ba1a4462e4853b9ce4a3e340c6efba.tar.bz2 |
Remove "experimental-html" from chrome.app.window
The "experimental-html" frame option is behind a flag, undocumented and
seems not used by real app developers.
Review URL: https://codereview.chromium.org/1690893003
Cr-Commit-Position: refs/heads/master@{#375443}
Diffstat (limited to 'extensions/renderer/app_window_custom_bindings.h')
-rw-r--r-- | extensions/renderer/app_window_custom_bindings.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/extensions/renderer/app_window_custom_bindings.h b/extensions/renderer/app_window_custom_bindings.h index 26e02c7..3fbab04 100644 --- a/extensions/renderer/app_window_custom_bindings.h +++ b/extensions/renderer/app_window_custom_bindings.h @@ -14,8 +14,7 @@ class ScriptContextSet; // Implements custom bindings for the app.window API. class AppWindowCustomBindings : public ObjectBackedNativeHandler { public: - AppWindowCustomBindings(const ScriptContextSet* script_context_set, - ScriptContext* context); + AppWindowCustomBindings(ScriptContext* context); private: void GetFrame(const v8::FunctionCallbackInfo<v8::Value>& args); @@ -25,9 +24,6 @@ class AppWindowCustomBindings : public ObjectBackedNativeHandler { void GetWindowControlsHtmlTemplate( const v8::FunctionCallbackInfo<v8::Value>& args); - // ScriptContextSet handle. Not owned. - const ScriptContextSet* script_context_set_; - DISALLOW_COPY_AND_ASSIGN(AppWindowCustomBindings); }; |