Chromium Code Reviews

Side by Side Diff: chrome/browser/debugger/debugger_window.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.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/debugger_window.h" 5 #include "chrome/browser/debugger/debugger_window.h"
6 6
7 #include "app/l10n_util.h"
7 #include "base/string_util.h" 8 #include "base/string_util.h"
8 #include "base/values.h" 9 #include "base/values.h"
9 #include "chrome/browser/browser_process.h" 10 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/debugger/debugger_host_impl.h" 11 #include "chrome/browser/debugger/debugger_host_impl.h"
11 #include "chrome/browser/debugger/debugger_view.h" 12 #include "chrome/browser/debugger/debugger_view.h"
12 #include "chrome/browser/debugger/debugger_wrapper.h" 13 #include "chrome/browser/debugger/debugger_wrapper.h"
13 #include "chrome/browser/tab_contents/constrained_window.h" 14 #include "chrome/browser/tab_contents/constrained_window.h"
14 #include "chrome/browser/tab_contents/tab_contents.h" 15 #include "chrome/browser/tab_contents/tab_contents.h"
15 #include "chrome/common/l10n_util.h"
16 #include "grit/generated_resources.h" 16 #include "grit/generated_resources.h"
17 17
18 DebuggerWindow::DebuggerWindow() : window_(NULL), 18 DebuggerWindow::DebuggerWindow() : window_(NULL),
19 view_(NULL), 19 view_(NULL),
20 debugger_ready_(true), 20 debugger_ready_(true),
21 debugger_break_(false) { 21 debugger_break_(false) {
22 } 22 }
23 23
24 DebuggerWindow::~DebuggerWindow() { 24 DebuggerWindow::~DebuggerWindow() {
25 } 25 }
(...skipping 138 matching lines...)
164 wrapper->SetDebugger(NULL); 164 wrapper->SetDebugger(NULL);
165 } 165 }
166 166
167 bool DebuggerWindow::CanResize() const { 167 bool DebuggerWindow::CanResize() const {
168 return true; 168 return true;
169 } 169 }
170 170
171 views::View* DebuggerWindow::GetContentsView() { 171 views::View* DebuggerWindow::GetContentsView() {
172 return view_; 172 return view_;
173 } 173 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | chrome/browser/debugger/devtools_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine