Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ deps = {
'src/third_party/libcxx': 'https://llvm.googlesource.com/llvm-project/libcxx@bd557f6f764d1e40b62528a13b124ce740624f8f',
'src/third_party/libcxxabi': 'https://llvm.googlesource.com/llvm-project/libcxxabi@a4dda1589d37a7e4b4f7a81ebad01b1083f2e726',
'src/third_party/googletest': 'https://github.com/google/googletest@7f036c5563af7d0329f20e8bb42effb04629f0c0',
'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@a29e08c72e2ce21813c1edf50cbcdfcac7a7acdd',
'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@13d929085afa86e5902ed7293cca8509f099ee97',
'src/third_party/clang': {
'packages': [
{
'package': 'fuchsia/third_party/clang/linux-amd64',
'version': 'git_revision:725656bdd885483c39f482a01ea25d67acf39c46'
'version': 'git_revision:8c7a2ce01a77c96028fe2c8566f65c45ad9408d3'
}
],
'dep_type': 'cipd',
Expand All @@ -21,7 +21,7 @@ deps = {
'packages': [
{
'package': 'gn/gn/${{platform}}',
'version': 'git_revision:7a8aa3a08a13521336853a28c46537ec04338a2d',
'version': 'git_revision:81b24e01531ecf0eff12ec9359a555ec3944ec4e',
},
],
'dep_type': 'cipd',
Expand Down
8 changes: 4 additions & 4 deletions flutter/shell/platform/common/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ source_set("common_cpp_input") {

public_configs = [ "//flutter:config" ]

deps = [ "//flutter/fml:fml" ]
deps = [ "//flutter/fml" ]
}

source_set("common_cpp_isolate_scope") {
public = [ "isolate_scope.h" ]
sources = [ "isolate_scope.cc" ]

deps = [ "//flutter/fml:fml" ]
deps = [ "//flutter/fml" ]
}

source_set("common_cpp_enums") {
Expand Down Expand Up @@ -95,7 +95,7 @@ source_set("common_cpp_accessibility") {
[ "//flutter/third_party/accessibility:accessibility_config" ]

public_deps = [
"//flutter/fml:fml",
"//flutter/fml",
"//flutter/shell/platform/embedder:embedder_headers",
"//flutter/third_party/accessibility",
]
Expand All @@ -122,7 +122,7 @@ source_set("common_cpp") {

deps = [
":common_cpp_library_headers",
"//flutter/shell/platform/common/client_wrapper:client_wrapper",
"//flutter/shell/platform/common/client_wrapper",
"//flutter/shell/platform/embedder:embedder_headers",
]

Expand Down
8 changes: 4 additions & 4 deletions flutter/shell/platform/common/public/flutter_messenger.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ FLUTTER_EXPORT void FlutterDesktopMessengerSetCallback(
// Operation is thread-safe.
//
// See also: |FlutterDesktopMessengerRelease|
FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopMessengerAddRef(
FlutterDesktopMessengerRef messenger);
FLUTTER_EXPORT FlutterDesktopMessengerRef
FlutterDesktopMessengerAddRef(FlutterDesktopMessengerRef messenger);

// Decrements the reference count for the |messenger|.
//
Expand Down Expand Up @@ -126,8 +126,8 @@ FLUTTER_EXPORT bool FlutterDesktopMessengerIsAvailable(
// Returns the |messenger| value.
//
// See also: |FlutterDesktopMessengerUnlock|
FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopMessengerLock(
FlutterDesktopMessengerRef messenger);
FLUTTER_EXPORT FlutterDesktopMessengerRef
FlutterDesktopMessengerLock(FlutterDesktopMessengerRef messenger);

// Unlocks the `FlutterDesktopMessengerRef`.
//
Expand Down
4 changes: 2 additions & 2 deletions flutter/shell/platform/tizen/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ template("embedder") {
"//flutter/shell/platform/common:common_cpp_input",
"//flutter/shell/platform/common:common_cpp_isolate_scope",
"//flutter/shell/platform/common:common_cpp_library_headers",
"//flutter/shell/platform/common/client_wrapper:client_wrapper",
"//flutter/shell/platform/common/client_wrapper",
"//flutter/shell/platform/embedder:embedder_headers",
"//third_party/rapidjson",
]
Expand Down Expand Up @@ -265,7 +265,7 @@ executable("flutter_tizen_unittests") {
":flutter_tizen_source",
"//flutter/shell/platform/common:common_cpp",
"//flutter/shell/platform/common:common_cpp_accessibility",
"//flutter/shell/platform/common/client_wrapper:client_wrapper",
"//flutter/shell/platform/common/client_wrapper",
"//third_party/googletest:gtest_main",
"//third_party/rapidjson",
]
Expand Down
2 changes: 1 addition & 1 deletion flutter/shell/platform/tizen/channels/app_control.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ DART_EXPORT FLUTTER_EXPORT bool NativeAttachAppControl(int32_t id,
namespace flutter {

struct AppControlResult {
AppControlResult() : error_code(APP_CONTROL_ERROR_NONE){};
AppControlResult() : error_code(APP_CONTROL_ERROR_NONE) {};
AppControlResult(int code) : error_code(code) {}

// Returns false on error.
Expand Down
8 changes: 4 additions & 4 deletions flutter/shell/platform/tizen/public/flutter_tizen.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ FlutterDesktopEngineGetPluginRegistrar(FlutterDesktopEngineRef engine,
const char* plugin_name);

// Returns the messenger associated with the engine.
FLUTTER_EXPORT FlutterDesktopMessengerRef FlutterDesktopEngineGetMessenger(
FlutterDesktopEngineRef engine);
FLUTTER_EXPORT FlutterDesktopMessengerRef
FlutterDesktopEngineGetMessenger(FlutterDesktopEngineRef engine);

// Posts an app control to the engine instance.
FLUTTER_EXPORT void FlutterDesktopEngineNotifyAppControl(
Expand Down Expand Up @@ -212,8 +212,8 @@ FLUTTER_EXPORT void* FlutterDesktopViewGetNativeHandle(
FlutterDesktopViewRef view);

// Returns the resource id of current window.
FLUTTER_EXPORT uint32_t FlutterDesktopViewGetResourceId(
FlutterDesktopViewRef view);
FLUTTER_EXPORT uint32_t
FlutterDesktopViewGetResourceId(FlutterDesktopViewRef view);

// Resizes the view.
// @warning This API is a work-in-progress and may change.
Expand Down