
- Move ImageDetails from chrome to extensions. BUG=352290 Review URL: https://codereview.chromium.org/487533005 Cr-Commit-Position: refs/heads/master@{#292567}
12 lines
408 B
Python
12 lines
408 B
Python
# Copyright (c) 2012 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.
|
|
|
|
from cc_generator import CCGenerator
|
|
from h_generator import HGenerator
|
|
|
|
class CppGenerator(object):
|
|
def __init__(self, type_generator):
|
|
self.h_generator = HGenerator(type_generator)
|
|
self.cc_generator = CCGenerator(type_generator)
|