diff options
author | hashimoto <hashimoto@chromium.org> | 2014-09-04 19:38:31 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-05 02:41:17 +0000 |
commit | f784afd4de115dba788b0adc7034a15846765ff5 (patch) | |
tree | 75117182c4981f46f725cafe2d894f626b2aa71e /chrome/browser/about_flags.cc | |
parent | 81145970e2b1c0ceff32af1de3239c48cb4b1d7e (diff) | |
download | chromium_src-f784afd4de115dba788b0adc7034a15846765ff5.zip chromium_src-f784afd4de115dba788b0adc7034a15846765ff5.tar.gz chromium_src-f784afd4de115dba788b0adc7034a15846765ff5.tar.bz2 |
Move app.window API implementation to extensions
Move files:
-Move chrome/browser/extensions/api/app_window/* to extensions/browser.
-Move app_window.idl, app_window_custom_bindings.{cc,h}, app_window_custom_bindings.js to extensions.
-Move window_controls.js and window_controls_template.html to extensions.
Move switches and code:
- Move kEnableAppWindowControls switch to extensions/common/switches.h.
- Move dummy WebContentsModalDialogManager::CreateNativeWebModalManager implementation from athena's web_contents_view_delegate_factory_impl.cc to a new file shell_web_contents_modal_dialog_manager.cc.
Fix dispatchers:
- Move code from chrome_extensions_dispatcher_delegate.cc to extensions/renderer/dispatcher.cc
BUG=387288
Review URL: https://codereview.chromium.org/534163002
Cr-Commit-Position: refs/heads/master@{#293409}
Diffstat (limited to 'chrome/browser/about_flags.cc')
-rw-r--r-- | chrome/browser/about_flags.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index 612d4e7..df8639f 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -684,7 +684,7 @@ const Experiment kExperiments[] = { IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_NAME, IDS_FLAGS_ENABLE_APP_WINDOW_CONTROLS_DESCRIPTION, kOsDesktop, - SINGLE_VALUE_TYPE(switches::kEnableAppWindowControls) + SINGLE_VALUE_TYPE(extensions::switches::kEnableAppWindowControls) }, { "disable-hyperlink-auditing", |