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

Side by Side Diff: chrome/browser/ui/views/about_ipc_dialog.cc

Issue 6257017: views: Move standard_layout.h into the layout directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // Need to include this before any other file because it defines 5 // Need to include this before any other file because it defines
6 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define 6 // IPC_MESSAGE_LOG_ENABLED. We need to use it to define
7 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the 7 // IPC_MESSAGE_MACROS_LOG_ENABLED so render_messages.h will generate the
8 // ViewMsgLog et al. functions. 8 // ViewMsgLog et al. functions.
9 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 10
(...skipping 11 matching lines...) Expand all
22 #include "chrome/app/chrome_command_ids.h" 22 #include "chrome/app/chrome_command_ids.h"
23 #include "chrome/app/chrome_dll_resource.h" 23 #include "chrome/app/chrome_dll_resource.h"
24 #include "chrome/browser/browser_process.h" 24 #include "chrome/browser/browser_process.h"
25 #include "chrome/common/chrome_constants.h" 25 #include "chrome/common/chrome_constants.h"
26 #include "chrome/common/devtools_messages.h" 26 #include "chrome/common/devtools_messages.h"
27 #include "chrome/common/plugin_messages.h" 27 #include "chrome/common/plugin_messages.h"
28 #include "chrome/common/render_messages.h" 28 #include "chrome/common/render_messages.h"
29 #include "net/url_request/url_request.h" 29 #include "net/url_request/url_request.h"
30 #include "net/url_request/url_request_job.h" 30 #include "net/url_request/url_request_job.h"
31 #include "net/url_request/url_request_job_tracker.h" 31 #include "net/url_request/url_request_job_tracker.h"
32 #include "views/grid_layout.h"
33 #include "views/controls/button/text_button.h" 32 #include "views/controls/button/text_button.h"
34 #include "views/controls/native/native_view_host.h" 33 #include "views/controls/native/native_view_host.h"
35 #include "views/standard_layout.h" 34 #include "views/grid_layout.h"
35 #include "views/layout/layout_constants.h"
36 #include "views/widget/root_view.h" 36 #include "views/widget/root_view.h"
37 #include "views/widget/widget.h" 37 #include "views/widget/widget.h"
38 #include "views/window/window.h" 38 #include "views/window/window.h"
39 39
40 namespace { 40 namespace {
41 41
42 // We don't localize this UI since this is a developer-only feature. 42 // We don't localize this UI since this is a developer-only feature.
43 const wchar_t kStartTrackingLabel[] = L"Start tracking"; 43 const wchar_t kStartTrackingLabel[] = L"Start tracking";
44 const wchar_t kStopTrackingLabel[] = L"Stop tracking"; 44 const wchar_t kStopTrackingLabel[] = L"Stop tracking";
45 const wchar_t kClearLabel[] = L"Clear"; 45 const wchar_t kClearLabel[] = L"Clear";
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 361 }
362 track_toggle_->SchedulePaint(); 362 track_toggle_->SchedulePaint();
363 } else if (button == clear_button_) { 363 } else if (button == clear_button_) {
364 message_list_.DeleteAllItems(); 364 message_list_.DeleteAllItems();
365 } else if (button == filter_button_) { 365 } else if (button == filter_button_) {
366 RunSettingsDialog(GetRootView()->GetWidget()->GetNativeView()); 366 RunSettingsDialog(GetRootView()->GetWidget()->GetNativeView());
367 } 367 }
368 } 368 }
369 369
370 #endif // IPC_MESSAGE_LOG_ENABLED 370 #endif // IPC_MESSAGE_LOG_ENABLED
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/about_chrome_view.cc ('k') | chrome/browser/ui/views/autocomplete/autocomplete_popup_contents_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698