#include <stddef.h>
#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/ui/browser_command_controller.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/testing_profile.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
#include "components/zoom/page_zoom.h"
#include "components/zoom/zoom_controller.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/page_zoom.h"
#include "content/public/test/navigation_simulator.h"
#include "content/public/test/test_renderer_host.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/page/page_zoom.h"
#include "third_party/blink/public/common/renderer_preferences/renderer_preferences.h"
namespace {
BookmarkModel;
OpenURLParams;
Referrer;
WebContents;
ZoomController;
class BrowserCommandsTest : public BrowserWithTestWindowTest { … };
TEST_F(BrowserCommandsTest, TabNavigationAccelerators) { … }
TEST_F(BrowserCommandsTest, DuplicateTab) { … }
TEST_F(BrowserCommandsTest, ViewSource) { … }
TEST_F(BrowserCommandsTest, BookmarkCurrentTab) { … }
TEST_F(BrowserCommandsTest, BackForwardInNewTab) { … }
TEST_F(BrowserCommandsTest, BackForwardInNewTabWithGroup) { … }
TEST_F(BrowserCommandsTest, OnMaxZoomIn) { … }
TEST_F(BrowserCommandsTest, OnMaxZoomOut) { … }
TEST_F(BrowserCommandsTest, OnZoomReset) { … }
TEST_F(BrowserCommandsTest, OnZoomLevelChanged) { … }
TEST_F(BrowserCommandsTest, OnZoomChangedForActiveTab) { … }
TEST_F(BrowserCommandsTest, OnDefaultZoomLevelChanged) { … }
TEST_F(BrowserCommandsTest, ToggleCaretBrowsing) { … }
TEST_F(BrowserCommandsTest, TabSearchCommandStatus) { … }
}