blob: 27c0b70bff9ac8ab3d15fe23e69fafece4f2c570 [file] [log] [blame]
// Copyright (c) 2012 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/renderer/extensions/chrome_v8_extension.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "chrome/common/extensions/api/extension_api.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_set.h"
#include "chrome/renderer/extensions/chrome_v8_context.h"
#include "chrome/renderer/extensions/dispatcher.h"
#include "content/public/renderer/render_view.h"
#include "third_party/WebKit/public/web/WebDocument.h"
#include "third_party/WebKit/public/web/WebFrame.h"
#include "third_party/WebKit/public/web/WebView.h"
#include "ui/base/resource/resource_bundle.h"
using WebKit::WebDocument;
using WebKit::WebFrame;
using WebKit::WebView;
namespace extensions {
ChromeV8Extension::ChromeV8Extension(Dispatcher* dispatcher,
ChromeV8Context* context)
: ObjectBackedNativeHandler(context),
dispatcher_(dispatcher) {
CHECK(dispatcher);
}
ChromeV8Extension::~ChromeV8Extension() {
}
content::RenderView* ChromeV8Extension::GetRenderView() {
return context() ? context()->GetRenderView() : NULL;
}
const Extension* ChromeV8Extension::GetExtensionForRenderView() {
return context() ? context()->extension() : NULL;
}
} // namespace extensions