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

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

Issue 12378077: Attempting to fix problems in 11571014. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: oops Created 7 years, 10 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
Index: chrome/renderer/extensions/native_handler.cc
diff --git a/chrome/renderer/extensions/native_handler.cc b/chrome/renderer/extensions/native_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d6a9e57cd5518fd35bfbf2e3cc682ab2a3949611
--- /dev/null
+++ b/chrome/renderer/extensions/native_handler.cc
@@ -0,0 +1,17 @@
+// 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/native_handler.h"
+
+namespace extensions {
+
+NativeHandler::NativeHandler() : is_valid_(true) {}
+
+NativeHandler::~NativeHandler() {}
+
+void NativeHandler::Invalidate() {
+ is_valid_ = false;
+}
+
+} // namespace extensions
« no previous file with comments | « chrome/renderer/extensions/native_handler.h ('k') | chrome/renderer/extensions/object_backed_native_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698