| Index: win8/metro_driver/ime/input_scope.h
|
| diff --git a/win8/metro_driver/ime/input_scope.h b/win8/metro_driver/ime/input_scope.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..649bbb3a9a1fc952a582cd359ed1e7bedf942f0a
|
| --- /dev/null
|
| +++ b/win8/metro_driver/ime/input_scope.h
|
| @@ -0,0 +1,22 @@
|
| +// 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.
|
| +
|
| +#ifndef WIN8_METRO_DRIVER_IME_INPUT_SCOPE_H_
|
| +#define WIN8_METRO_DRIVER_IME_INPUT_SCOPE_H_
|
| +
|
| +#include <InputScope.h>
|
| +#include <vector>
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "base/win/scoped_comptr.h"
|
| +
|
| +namespace metro_driver {
|
| +
|
| +// Returns an InputScope object which contains |input_scopes|.
|
| +base::win::ScopedComPtr<IUnknown>
|
| +CreteInputScope(const std::vector<InputScope>& input_scopes);
|
| +
|
| +} // namespace metro_driver
|
| +
|
| +#endif // WIN8_METRO_DRIVER_IME_TEXT_STORE_H_
|
|
|