| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/extensions/extension_infobar_module.h" | 5 #include "chrome/browser/extensions/extension_infobar_module.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "chrome/browser/browser.h" | |
| 11 #include "chrome/browser/extensions/extension_host.h" | 10 #include "chrome/browser/extensions/extension_host.h" |
| 12 #include "chrome/browser/extensions/extension_infobar_module_constants.h" | 11 #include "chrome/browser/extensions/extension_infobar_module_constants.h" |
| 13 #include "chrome/browser/extensions/extension_infobar_delegate.h" | 12 #include "chrome/browser/extensions/extension_infobar_delegate.h" |
| 14 #include "chrome/browser/extensions/extension_tabs_module.h" | 13 #include "chrome/browser/extensions/extension_tabs_module.h" |
| 15 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 14 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
| 16 #include "chrome/browser/tab_contents/infobar_delegate.h" | 15 #include "chrome/browser/tab_contents/infobar_delegate.h" |
| 17 #include "chrome/browser/tab_contents/tab_contents.h" | 16 #include "chrome/browser/tab_contents/tab_contents.h" |
| 17 #include "chrome/browser/ui/browser.h" |
| 18 #include "chrome/common/extensions/extension.h" | 18 #include "chrome/common/extensions/extension.h" |
| 19 #include "chrome/common/extensions/extension_error_utils.h" | 19 #include "chrome/common/extensions/extension_error_utils.h" |
| 20 #include "chrome/common/url_constants.h" | 20 #include "chrome/common/url_constants.h" |
| 21 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" |
| 22 | 22 |
| 23 namespace keys = extension_infobar_module_constants; | 23 namespace keys = extension_infobar_module_constants; |
| 24 | 24 |
| 25 bool ShowInfoBarFunction::RunImpl() { | 25 bool ShowInfoBarFunction::RunImpl() { |
| 26 DictionaryValue* args; | 26 DictionaryValue* args; |
| 27 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args)); | 27 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args)); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 52 } | 52 } |
| 53 | 53 |
| 54 tab_contents->AddInfoBar( | 54 tab_contents->AddInfoBar( |
| 55 new ExtensionInfoBarDelegate(browser, tab_contents, GetExtension(), url)); | 55 new ExtensionInfoBarDelegate(browser, tab_contents, GetExtension(), url)); |
| 56 | 56 |
| 57 // TODO(finnur): Return the actual DOMWindow object. Bug 26463. | 57 // TODO(finnur): Return the actual DOMWindow object. Bug 26463. |
| 58 result_.reset(ExtensionTabUtil::CreateWindowValue(browser, false)); | 58 result_.reset(ExtensionTabUtil::CreateWindowValue(browser, false)); |
| 59 | 59 |
| 60 return true; | 60 return true; |
| 61 } | 61 } |
| OLD | NEW |