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

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

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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
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 // 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 "chrome/common/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 10
11 #ifdef IPC_MESSAGE_LOG_ENABLED 11 #ifdef IPC_MESSAGE_LOG_ENABLED
12 #define IPC_MESSAGE_MACROS_LOG_ENABLED 12 #define IPC_MESSAGE_MACROS_LOG_ENABLED
13 13
14 #include "chrome/browser/views/about_ipc_dialog.h" 14 #include "chrome/browser/views/about_ipc_dialog.h"
15 15
16 #include <set> 16 #include <set>
17 17
18 #include "base/string_util.h" 18 #include "base/string_util.h"
19 #include "base/thread.h" 19 #include "base/thread.h"
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 } 444 }
445 track_toggle_->SchedulePaint(); 445 track_toggle_->SchedulePaint();
446 } else if (button == clear_button_) { 446 } else if (button == clear_button_) {
447 message_list_.DeleteAllItems(); 447 message_list_.DeleteAllItems();
448 } else if (button == filter_button_) { 448 } else if (button == filter_button_) {
449 RunSettingsDialog(GetRootView()->GetWidget()->GetNativeView()); 449 RunSettingsDialog(GetRootView()->GetWidget()->GetNativeView());
450 } 450 }
451 } 451 }
452 452
453 #endif // IPC_MESSAGE_LOG_ENABLED 453 #endif // IPC_MESSAGE_LOG_ENABLED
OLDNEW
« no previous file with comments | « chrome/browser/views/about_ipc_dialog.h ('k') | chrome/browser/worker_host/worker_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698