1 // Copyright 2020 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 #ifndef WEBLAYER_BROWSER_WEBLAYER_FACTORY_IMPL_ANDROID_H_
6 #define WEBLAYER_BROWSER_WEBLAYER_FACTORY_IMPL_ANDROID_H_
7 
8 namespace weblayer {
9 
10 // Exposes functionality from WebLayerFactoryImpl.java to C++.
11 class WebLayerFactoryImplAndroid {
12  public:
13   static int GetClientMajorVersion();
14 };
15 
16 }  // namespace weblayer
17 
18 #endif  // WEBLAYER_BROWSER_WEBLAYER_FACTORY_IMPL_ANDROID_H_
19