Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2938)

Unified Diff: chrome/common/ntp_logging_events.h

Issue 2122903002: Move search-related files from chrome/common to chrome/common/search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move search-related files Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/instant_types_unittest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ntp_logging_events.h
diff --git a/chrome/common/ntp_logging_events.h b/chrome/common/ntp_logging_events.h
deleted file mode 100644
index be1bfeef6358ab75c2b94edd9b4cbed86ddf11fe..0000000000000000000000000000000000000000
--- a/chrome/common/ntp_logging_events.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_COMMON_NTP_LOGGING_EVENTS_H_
-#define CHROME_COMMON_NTP_LOGGING_EVENTS_H_
-
-// The different types of events that are logged from the NTP. This enum is used
-// to transfer information from the NTP javascript to the renderer and is not
-// used as a UMA enum histogram's logged value.
-// Note: Keep in sync with browser/resources/local_ntp/most_visited_util.js
-enum NTPLoggingEventType {
- // The suggestion is coming from the server.
- NTP_SERVER_SIDE_SUGGESTION = 0,
-
- // The suggestion is coming from the client.
- NTP_CLIENT_SIDE_SUGGESTION = 1,
-
- // Indicates a tile was rendered, no matter if it's a thumbnail, a gray tile
- // or an external tile.
- NTP_TILE = 2,
-
- // The tile uses a local thumbnail image.
- NTP_THUMBNAIL_TILE = 3,
-
- // Used when no thumbnail is specified and a gray tile with the domain is used
- // as the main tile.
- NTP_GRAY_TILE = 4,
-
- // The visuals of that tile are handled externally by the page itself.
- NTP_EXTERNAL_TILE = 5,
-
- // There was an error in loading both the thumbnail image and the fallback
- // (if it was provided), resulting in a grey tile.
- NTP_THUMBNAIL_ERROR = 6,
-
- // Used a gray tile with the domain as the fallback for a failed thumbnail.
- NTP_GRAY_TILE_FALLBACK = 7,
-
- // The visuals of that tile's fallback are handled externally.
- NTP_EXTERNAL_TILE_FALLBACK = 8,
-
- // The user moused over an NTP tile or title.
- NTP_MOUSEOVER = 9,
-
- // A NTP Tile has finished loading (successfully or failing).
- NTP_TILE_LOADED = 10,
-
- NTP_EVENT_TYPE_LAST = NTP_TILE_LOADED
-};
-
-#endif // CHROME_COMMON_NTP_LOGGING_EVENTS_H_
« no previous file with comments | « chrome/common/instant_types_unittest.cc ('k') | chrome/common/render_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698