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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 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
5 #ifndef CHROME_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
6 #define CHROME_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
7
8 #include <string>
9
10 #include "base/time/time.h"
11
12 struct TranslateEventDetails {
13 TranslateEventDetails(const std::string& in_filename,
14 int in_line,
15 const std::string& in_message);
16
17 // The time when this event was created.
18 base::Time time;
19
20 // The source filename where this event was created.
21 std::string filename;
22
23 // The source line in |filename| where this event was created.
24 int line;
25
26 // The message to show in event logs.
27 std::string message;
28 };
29
30 #endif // CHROME_BROWSER_TRANSLATE_TRANSLATE_EVENT_DETAILS_H_
OLDNEW
« 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