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

Unified Diff: chrome/browser/translate/translate_event_details.h

Issue 93603006: Move Translate-related files to components/translate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 6 years, 11 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
Index: chrome/browser/translate/translate_event_details.h
diff --git a/chrome/browser/translate/translate_event_details.h b/chrome/browser/translate/translate_event_details.h
deleted file mode 100644
index 0b98b6db7ed667e594b21e114347d63b5f2c5bea..0000000000000000000000000000000000000000
--- a/chrome/browser/translate/translate_event_details.h
+++ /dev/null
@@ -1,30 +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_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
-#define CHROME_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
-
-#include <string>
-
-#include "base/time/time.h"
-
-struct TranslateEventDetails {
- TranslateEventDetails(const std::string& in_filename,
- int in_line,
- const std::string& in_message);
-
- // The time when this event was created.
- base::Time time;
-
- // The source filename where this event was created.
- std::string filename;
-
- // The source line in |filename| where this event was created.
- int line;
-
- // The message to show in event logs.
- std::string message;
-};
-
-#endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
« no previous file with comments | « chrome/browser/translate/translate_error_details.h ('k') | chrome/browser/translate/translate_event_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698