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

Side by Side 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, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/renderer/extensions/native_handler.h"
6
7 namespace extensions {
8
9 NativeHandler::NativeHandler() : is_valid_(true) {}
10
11 NativeHandler::~NativeHandler() {}
12
13 void NativeHandler::Invalidate() {
14 is_valid_ = false;
15 }
16
17 } // namespace extensions
OLDNEW
« 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