Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5956)

Unified Diff: chrome/renderer/extensions/blob_native_handler.cc

Issue 235943018: Move extensions bindings code out of //chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/extensions/blob_native_handler.h ('k') | chrome/renderer/extensions/content_watcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/blob_native_handler.cc
diff --git a/chrome/renderer/extensions/blob_native_handler.cc b/chrome/renderer/extensions/blob_native_handler.cc
deleted file mode 100644
index 6c6bbfe8086ea10f97d679a6cc2ae7e1cae6778d..0000000000000000000000000000000000000000
--- a/chrome/renderer/extensions/blob_native_handler.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2013 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/blob_native_handler.h"
-
-#include "base/bind.h"
-#include "third_party/WebKit/public/platform/WebCString.h"
-#include "third_party/WebKit/public/platform/WebURL.h"
-#include "third_party/WebKit/public/web/WebBlob.h"
-
-namespace {
-
-// Expects a single Blob argument. Returns the Blob's UUID.
-void GetBlobUuid(const v8::FunctionCallbackInfo<v8::Value>& args) {
- DCHECK_EQ(1, args.Length());
- blink::WebBlob blob = blink::WebBlob::fromV8Value(args[0]);
- args.GetReturnValue().Set(
- v8::String::NewFromUtf8(args.GetIsolate(), blob.uuid().utf8().data()));
-}
-
-} // namespace
-
-namespace extensions {
-
-BlobNativeHandler::BlobNativeHandler(ScriptContext* context)
- : ObjectBackedNativeHandler(context) {
- RouteFunction("GetBlobUuid", base::Bind(&GetBlobUuid));
-}
-
-} // namespace extensions
« no previous file with comments | « chrome/renderer/extensions/blob_native_handler.h ('k') | chrome/renderer/extensions/content_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698