rlz_tracker_mac.cc 554 B

123456789101112131415161718192021222324
  1. // Copyright 2014 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. #include "components/rlz/rlz_tracker.h"
  5. namespace rlz {
  6. // static
  7. rlz_lib::AccessPoint RLZTracker::ChromeOmnibox() {
  8. return rlz_lib::CHROME_MAC_OMNIBOX;
  9. }
  10. // static
  11. rlz_lib::AccessPoint RLZTracker::ChromeHomePage() {
  12. return rlz_lib::CHROME_MAC_HOME_PAGE;
  13. }
  14. // static
  15. rlz_lib::AccessPoint RLZTracker::ChromeAppList() {
  16. return rlz_lib::CHROME_MAC_APP_LIST;
  17. }
  18. } // namespace rlz