diff options
author | rockot@chromium.org <rockot@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-17 04:37:37 +0000 |
---|---|---|
committer | rockot@chromium.org <rockot@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-17 04:37:37 +0000 |
commit | 701a94eca898108d9c2db22137dcca5cc1670f3a (patch) | |
tree | 0755fe926595396a617356204177c66deb1bc439 /extensions/renderer/css_native_handler.h | |
parent | ab0a831fea8167144a88f3157dfd776f654d057a (diff) | |
download | chromium_src-701a94eca898108d9c2db22137dcca5cc1670f3a.zip chromium_src-701a94eca898108d9c2db22137dcca5cc1670f3a.tar.gz chromium_src-701a94eca898108d9c2db22137dcca5cc1670f3a.tar.bz2 |
Move extensions bindings code out of //chrome
This moves several native handlers out of //chrome/renderer/extensions and into
//extensions/renderer.
Many of the changes are mechanical. Where applicable,
ChromeV8Extension has been wiped out.
BUG=359836
R=yoz@chromium.org
TBR=reed@google.com for skia +DEPS
TBR=ericu@chromium.org for fileapi +DEPS
TBR=eseidel@chromium.org for WebKit/public/platform +DEPS
TBR=sky@chromium.org for chrome/test
TBR=maruel@chromium.org for PRESUBMIT.py
Review URL: https://codereview.chromium.org/235943018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264413 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/renderer/css_native_handler.h')
-rw-r--r-- | extensions/renderer/css_native_handler.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extensions/renderer/css_native_handler.h b/extensions/renderer/css_native_handler.h new file mode 100644 index 0000000..c3d1bc3 --- /dev/null +++ b/extensions/renderer/css_native_handler.h @@ -0,0 +1,28 @@ +// Copyright 2014 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. + +#ifndef EXTENSIONS_RENDERER_CSS_NATIVE_HANDLER_H_ +#define EXTENSIONS_RENDERER_CSS_NATIVE_HANDLER_H_ + +#include "extensions/renderer/object_backed_native_handler.h" + +namespace extensions { +class ScriptContext; + +class CssNativeHandler : public ObjectBackedNativeHandler { + public: + explicit CssNativeHandler(ScriptContext* context); + + private: + // Expects one string argument that's a comma-separated list of compound CSS + // selectors (http://dev.w3.org/csswg/selectors4/#compound), and returns its + // Blink-canonicalized form. If the selector is invalid, returns an empty + // string. + void CanonicalizeCompoundSelector( + const v8::FunctionCallbackInfo<v8::Value>& args); +}; + +} // namespace extensions + +#endif // EXTENSIONS_RENDERER_CSS_NATIVE_HANDLER_H_ |