| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/extensions/chrome_v8_extension.h" | 5 #include "chrome/renderer/extensions/chrome_v8_extension.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "chrome/common/extensions/extension.h" | |
| 12 #include "chrome/common/extensions/extension_set.h" | 11 #include "chrome/common/extensions/extension_set.h" |
| 13 #include "chrome/renderer/extensions/chrome_v8_context.h" | 12 #include "chrome/renderer/extensions/chrome_v8_context.h" |
| 14 #include "chrome/renderer/extensions/dispatcher.h" | 13 #include "chrome/renderer/extensions/dispatcher.h" |
| 15 #include "content/public/renderer/render_view.h" | 14 #include "content/public/renderer/render_view.h" |
| 15 #include "extensions/common/extension.h" |
| 16 #include "extensions/common/extension_api.h" | 16 #include "extensions/common/extension_api.h" |
| 17 #include "third_party/WebKit/public/web/WebDocument.h" | 17 #include "third_party/WebKit/public/web/WebDocument.h" |
| 18 #include "third_party/WebKit/public/web/WebFrame.h" | 18 #include "third_party/WebKit/public/web/WebFrame.h" |
| 19 #include "third_party/WebKit/public/web/WebView.h" | 19 #include "third_party/WebKit/public/web/WebView.h" |
| 20 #include "ui/base/resource/resource_bundle.h" | 20 #include "ui/base/resource/resource_bundle.h" |
| 21 | 21 |
| 22 using blink::WebDocument; | 22 using blink::WebDocument; |
| 23 using blink::WebFrame; | 23 using blink::WebFrame; |
| 24 using blink::WebView; | 24 using blink::WebView; |
| 25 | 25 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 content::RenderView* ChromeV8Extension::GetRenderView() { | 38 content::RenderView* ChromeV8Extension::GetRenderView() { |
| 39 return context() ? context()->GetRenderView() : NULL; | 39 return context() ? context()->GetRenderView() : NULL; |
| 40 } | 40 } |
| 41 | 41 |
| 42 const Extension* ChromeV8Extension::GetExtensionForRenderView() { | 42 const Extension* ChromeV8Extension::GetExtensionForRenderView() { |
| 43 return context() ? context()->extension() : NULL; | 43 return context() ? context()->extension() : NULL; |
| 44 } | 44 } |
| 45 | 45 |
| 46 } // namespace extensions | 46 } // namespace extensions |
| OLD | NEW |