summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_infobar_module.cc
blob: 491b2789f6548f13929674dec6a7bc3c84b7454d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/extension_infobar_module.h"

#include "app/l10n_util.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/extensions/extension_infobar_module_constants.h"
#include "chrome/browser/extensions/extension_infobar_delegate.h"
#include "chrome/browser/extensions/extension_tabs_module.h"
#include "chrome/browser/extensions/extension_tabs_module_constants.h"
#include "chrome/browser/tab_contents/infobar_delegate.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "chrome/common/url_constants.h"
#include "grit/generated_resources.h"

namespace keys = extension_infobar_module_constants;

bool ShowInfoBarFunction::RunImpl() {
  EXTENSION_FUNCTION_VALIDATE(args_->IsType(Value::TYPE_DICTIONARY));
  const DictionaryValue* args = args_as_dictionary();

  std::string html_path;
  EXTENSION_FUNCTION_VALIDATE(args->GetString(keys::kHtmlPath, &html_path));

  GURL url = GURL(std::string(chrome::kExtensionScheme) +
                  chrome::kStandardSchemeSeparator +
                  extension_id() + "/" + html_path);

  Browser* browser = dispatcher()->GetBrowser(true);
  if (!browser) {
    error_ = keys::kNoCurrentWindowError;
    return false;
  }

  TabContents* tab_contents = NULL;
  if (args->HasKey(keys::kTabId)) {
    int tab_id = -1;
    EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kTabId, &tab_id));

    EXTENSION_FUNCTION_VALIDATE(ExtensionTabUtil::GetTabById(
        tab_id, browser->profile(), false,  // No incognito.
        NULL, NULL, &tab_contents, NULL));
  } else {
    tab_contents = browser->GetSelectedTabContents();
  }

  if (!tab_contents) {
    error_ = keys::kTabNotFoundError;
    return false;
  }

  tab_contents->AddInfoBar(
      new ExtensionInfoBarDelegate(browser, tab_contents, GetExtension(), url));

  // TODO(finnur): Return the actual DOMWindow object. Bug 26463.
  result_.reset(ExtensionTabUtil::CreateWindowValue(browser, false));

  return true;
}