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

Side by Side Diff: chrome/browser/debugger/devtools_window_win.cc

Issue 109043: Move l10n_util to app/ (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/browser/debugger/devtools_window_win.h" 5 #include "chrome/browser/debugger/devtools_window_win.h"
6 6
7 #include "app/l10n_util.h"
7 #include "chrome/browser/debugger/devtools_manager.h" 8 #include "chrome/browser/debugger/devtools_manager.h"
8 #include "chrome/browser/debugger/devtools_view.h" 9 #include "chrome/browser/debugger/devtools_view.h"
9 #include "chrome/browser/debugger/devtools_window.h" 10 #include "chrome/browser/debugger/devtools_window.h"
10 #include "chrome/common/l10n_util.h"
11 #include "chrome/views/window/window.h" 11 #include "chrome/views/window/window.h"
12 #include "grit/generated_resources.h" 12 #include "grit/generated_resources.h"
13 13
14 // static 14 // static
15 DevToolsWindow* DevToolsWindow::Create() { 15 DevToolsWindow* DevToolsWindow::Create() {
16 DevToolsView* view = new DevToolsView(); 16 DevToolsView* view = new DevToolsView();
17 DevToolsWindowWin* window = new DevToolsWindowWin(view); 17 DevToolsWindowWin* window = new DevToolsWindowWin(view);
18 views::Window::CreateChromeWindow(NULL, gfx::Rect(), window); 18 views::Window::CreateChromeWindow(NULL, gfx::Rect(), window);
19 return window; 19 return window;
20 } 20 }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 86
87 views::View* DevToolsWindowWin::GetContentsView() { 87 views::View* DevToolsWindowWin::GetContentsView() {
88 return tools_view_; 88 return tools_view_;
89 } 89 }
90 90
91 void DevToolsWindowWin::DeleteDelegate() { 91 void DevToolsWindowWin::DeleteDelegate() {
92 DCHECK(!tools_view_) << "WindowClosing should have been called."; 92 DCHECK(!tools_view_) << "WindowClosing should have been called.";
93 delete this; 93 delete this;
94 } 94 }
OLDNEW
« no previous file with comments | « chrome/browser/debugger/debugger_window.cc ('k') | chrome/browser/dom_ui/chrome_url_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698