Skip to content

Commit

Permalink
[iOS] Add Tab Groups files
Browse files Browse the repository at this point in the history
This CL add empty files for tab groups.

Bug: 1501837
Change-Id: I70c02a54ef3ccedd2ee70cf952dcab349b1d5f46
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5033774
Commit-Queue: Louis Romero <lpromero@google.com>
Reviewed-by: Louis Romero <lpromero@google.com>
Cr-Commit-Position: refs/heads/main@{#1227311}
  • Loading branch information
adangla authored and Chromium LUCI CQ committed Nov 21, 2023
1 parent 49a586e commit a39d5ea
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions ios/chrome/browser/ui/tab_switcher/tab_grid/grid/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ source_set("grid") {
"//ios/chrome/browser/ui/tab_switcher/tab_grid:tab_grid_metrics",
"//ios/chrome/browser/ui/tab_switcher/tab_grid:tab_grid_page_mutator",
"//ios/chrome/browser/ui/tab_switcher/tab_grid:tab_grid_paging",
"//ios/chrome/browser/ui/tab_switcher/tab_grid/grid/tab_groups",
"//ios/chrome/browser/ui/tab_switcher/tab_grid/tab_context_menu:tab_item",
"//ios/chrome/browser/ui/tab_switcher/tab_grid/toolbars",
"//ios/chrome/browser/ui/tab_switcher/tab_grid/toolbars:toolbars_ui",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("tab_groups") {
sources = [
"tab_groups_coordinator.h",
"tab_groups_coordinator.mm",
"tab_groups_mediator.h",
"tab_groups_mediator.mm",
]
deps = []
}

source_set("tab_groups_ui") {
sources = [
"tab_groups_view_controller.h",
"tab_groups_view_controller.mm",
]
deps = []
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_COORDINATOR_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_COORDINATOR_H_

#endif // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_COORDINATOR_H_
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "ios/chrome/browser/ui/tab_switcher/tab_grid/grid/tab_groups/tab_groups_coordinator.h"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_MEDIATOR_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_MEDIATOR_H_

#endif // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_MEDIATOR_H_
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "ios/chrome/browser/ui/tab_switcher/tab_grid/grid/tab_groups/tab_groups_mediator.h"
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_VIEW_CONTROLLER_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_VIEW_CONTROLLER_H_

#endif // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_GRID_TAB_GROUPS_TAB_GROUPS_VIEW_CONTROLLER_H_
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "ios/chrome/browser/ui/tab_switcher/tab_grid/grid/tab_groups/tab_groups_view_controller.h"

0 comments on commit a39d5ea

Please sign in to comment.