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

Side by Side Diff: remoting/host/continue_window_gtk.cc

Issue 15995038: Use a direct include of utf_string_conversions.h in google_apis/, gpu/, ipc/, media/, ppapi/, print… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/clipboard_win.cc ('k') | remoting/host/continue_window_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <gtk/gtk.h> 5 #include <gtk/gtk.h>
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "remoting/host/continue_window.h" 10 #include "remoting/host/continue_window.h"
11 #include "ui/base/gtk/gtk_signal.h" 11 #include "ui/base/gtk/gtk_signal.h"
12 12
13 namespace remoting { 13 namespace remoting {
14 14
15 class ContinueWindowGtk : public ContinueWindow { 15 class ContinueWindowGtk : public ContinueWindow {
16 public: 16 public:
17 explicit ContinueWindowGtk(const UiStrings& ui_strings); 17 explicit ContinueWindowGtk(const UiStrings& ui_strings);
18 virtual ~ContinueWindowGtk(); 18 virtual ~ContinueWindowGtk();
19 19
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 HideUi(); 112 HideUi();
113 } 113 }
114 114
115 // static 115 // static
116 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow( 116 scoped_ptr<HostWindow> HostWindow::CreateContinueWindow(
117 const UiStrings& ui_strings) { 117 const UiStrings& ui_strings) {
118 return scoped_ptr<HostWindow>(new ContinueWindowGtk(ui_strings)); 118 return scoped_ptr<HostWindow>(new ContinueWindowGtk(ui_strings));
119 } 119 }
120 120
121 } // namespace remoting 121 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/clipboard_win.cc ('k') | remoting/host/continue_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698