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

Side by Side Diff: Source/WebCore/inspector/InstrumentingAgents.cpp

Issue 13774005: Remove the ENABLE_SQL_DATABASE compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: python Created 7 years, 8 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #if USE(ACCELERATED_COMPOSITING) 46 #if USE(ACCELERATED_COMPOSITING)
47 , m_inspectorLayerTreeAgent(0) 47 , m_inspectorLayerTreeAgent(0)
48 #endif 48 #endif
49 , m_inspectorConsoleAgent(0) 49 , m_inspectorConsoleAgent(0)
50 , m_inspectorDOMAgent(0) 50 , m_inspectorDOMAgent(0)
51 , m_inspectorResourceAgent(0) 51 , m_inspectorResourceAgent(0)
52 , m_pageRuntimeAgent(0) 52 , m_pageRuntimeAgent(0)
53 , m_workerRuntimeAgent(0) 53 , m_workerRuntimeAgent(0)
54 , m_inspectorTimelineAgent(0) 54 , m_inspectorTimelineAgent(0)
55 , m_inspectorDOMStorageAgent(0) 55 , m_inspectorDOMStorageAgent(0)
56 #if ENABLE(SQL_DATABASE)
57 , m_inspectorDatabaseAgent(0) 56 , m_inspectorDatabaseAgent(0)
58 #endif
59 #if ENABLE(FILE_SYSTEM) 57 #if ENABLE(FILE_SYSTEM)
60 , m_inspectorFileSystemAgent(0) 58 , m_inspectorFileSystemAgent(0)
61 #endif 59 #endif
62 , m_inspectorApplicationCacheAgent(0) 60 , m_inspectorApplicationCacheAgent(0)
63 , m_inspectorDebuggerAgent(0) 61 , m_inspectorDebuggerAgent(0)
64 , m_pageDebuggerAgent(0) 62 , m_pageDebuggerAgent(0)
65 , m_inspectorDOMDebuggerAgent(0) 63 , m_inspectorDOMDebuggerAgent(0)
66 , m_inspectorProfilerAgent(0) 64 , m_inspectorProfilerAgent(0)
67 #if ENABLE(WORKERS) 65 #if ENABLE(WORKERS)
68 , m_inspectorWorkerAgent(0) 66 , m_inspectorWorkerAgent(0)
(...skipping 10 matching lines...) Expand all
79 #if USE(ACCELERATED_COMPOSITING) 77 #if USE(ACCELERATED_COMPOSITING)
80 m_inspectorLayerTreeAgent = 0; 78 m_inspectorLayerTreeAgent = 0;
81 #endif 79 #endif
82 m_inspectorConsoleAgent = 0; 80 m_inspectorConsoleAgent = 0;
83 m_inspectorDOMAgent = 0; 81 m_inspectorDOMAgent = 0;
84 m_inspectorResourceAgent = 0; 82 m_inspectorResourceAgent = 0;
85 m_pageRuntimeAgent = 0; 83 m_pageRuntimeAgent = 0;
86 m_workerRuntimeAgent = 0; 84 m_workerRuntimeAgent = 0;
87 m_inspectorTimelineAgent = 0; 85 m_inspectorTimelineAgent = 0;
88 m_inspectorDOMStorageAgent = 0; 86 m_inspectorDOMStorageAgent = 0;
89 #if ENABLE(SQL_DATABASE)
90 m_inspectorDatabaseAgent = 0; 87 m_inspectorDatabaseAgent = 0;
91 #endif
92 #if ENABLE(FILE_SYSTEM) 88 #if ENABLE(FILE_SYSTEM)
93 m_inspectorFileSystemAgent = 0; 89 m_inspectorFileSystemAgent = 0;
94 #endif 90 #endif
95 m_inspectorApplicationCacheAgent = 0; 91 m_inspectorApplicationCacheAgent = 0;
96 m_inspectorDebuggerAgent = 0; 92 m_inspectorDebuggerAgent = 0;
97 m_pageDebuggerAgent = 0; 93 m_pageDebuggerAgent = 0;
98 m_inspectorDOMDebuggerAgent = 0; 94 m_inspectorDOMDebuggerAgent = 0;
99 m_inspectorProfilerAgent = 0; 95 m_inspectorProfilerAgent = 0;
100 #if ENABLE(WORKERS) 96 #if ENABLE(WORKERS)
101 m_inspectorWorkerAgent = 0; 97 m_inspectorWorkerAgent = 0;
(...skipping 13 matching lines...) Expand all
115 InstrumentingAgents* instrumentationForWorkerContext(WorkerContext* workerContex t) 111 InstrumentingAgents* instrumentationForWorkerContext(WorkerContext* workerContex t)
116 { 112 {
117 if (WorkerInspectorController* controller = workerContext->workerInspectorCo ntroller()) 113 if (WorkerInspectorController* controller = workerContext->workerInspectorCo ntroller())
118 return controller->m_instrumentingAgents.get(); 114 return controller->m_instrumentingAgents.get();
119 return 0; 115 return 0;
120 } 116 }
121 #endif 117 #endif
122 118
123 } // namespace WebCore 119 } // namespace WebCore
124 120
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/InstrumentingAgents.h ('k') | Source/WebCore/inspector/WorkerInspectorController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698