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

Side by Side Diff: extensions/renderer/v8_schema_registry.h

Issue 240603003: Remove ChromeV8Extension & most of ChromeV8Context (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #ifndef CHROME_RENDERER_EXTENSIONS_V8_SCHEMA_REGISTRY_H_ 5 #ifndef EXTENSIONS_RENDERER_V8_SCHEMA_REGISTRY_H_
6 #define CHROME_RENDERER_EXTENSIONS_V8_SCHEMA_REGISTRY_H_ 6 #define EXTENSIONS_RENDERER_V8_SCHEMA_REGISTRY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "extensions/renderer/scoped_persistent.h" 14 #include "extensions/renderer/scoped_persistent.h"
15 #include "v8/include/v8-util.h" 15 #include "v8/include/v8-util.h"
16 #include "v8/include/v8.h" 16 #include "v8/include/v8.h"
(...skipping 28 matching lines...) Expand all
45 45
46 // Single per-instance v8::Context to create v8::Values. 46 // Single per-instance v8::Context to create v8::Values.
47 // Created lazily via GetOrCreateContext. 47 // Created lazily via GetOrCreateContext.
48 ScopedPersistent<v8::Context> context_; 48 ScopedPersistent<v8::Context> context_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(V8SchemaRegistry); 50 DISALLOW_COPY_AND_ASSIGN(V8SchemaRegistry);
51 }; 51 };
52 52
53 } // namespace extensions 53 } // namespace extensions
54 54
55 #endif // CHROME_RENDERER_EXTENSIONS_V8_SCHEMA_REGISTRY_H_ 55 #endif // EXTENSIONS_RENDERER_V8_SCHEMA_REGISTRY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698